Ticket #201 (closed defect: duplicate)
Album Pager Functionality
| Reported by: | oldnate | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.0 |
| Component: | General | Version: | 1.0b3 |
| Severity: | normal | Keywords: | pager |
| Cc: |
Description
When you go into an album with lets say 126 images and you are only viewing 25 thumbnails at one time, there is no link to view page 1, 2, 3, 4 etc.
I looked into the issue and found that in side plog-functions.php there is a function called, plogger_album_picture_count(), this function seems to be causing the issue.
Description and Fix:
the global, $GLOBALScurrent_album?id? lacks a value. The value somewhere in the plogger source code should be looking in the GET content in the URL. So by replacing:
$row = $GLOBALScurrent_album?;
with
Would fix the pager issue. It's probably not the most secure, but at least the issue has been created and the heart of the issue has been identified.
