|
Question:
Why does the box that allows users to rate images only appears on certain images?
Answer:
This is an error that was corrected after version 1.0.1 which only slowed the image rating box for images in the album which has the ID 1.
To manually solve the problem, open viewimage.php and find:
if ($usr->Access > 0 && $rec->fields["status"] == 1 && $alb->fields["albumid"] == 1){
Replace with:
if ($usr->Access > 0 && $rec->fields["status"] == 1 && $alb->fields["status"] == 1){
Software:
Particle Gallery
Versions:
0.1.1 - 1.0.1
|