|
well the email works as a ppuser is passed however I dont beleive in the code your able to see other peoples favorites.
Better way is to hide the box
In showgallery.tmpl
if ( $cat != 500 || ($cat == 500 && $ppuser > 0) ) {
change to
if ( $cat != 500 || $cat != "fav" || ($cat == 500 && $ppuser > 0) ) {
|