Quote:
Originally Posted by Chuck S Lets do a little test since you dont use moderators in vbgallery. try editing functions_gallery.php and line 283 comment this line out
$gallery_modcache = cache_gallery_mods();
like so
//$gallery_modcache = cache_gallery_mods();
lets see if the error goes away |
At line 1095 in the same file, there is another reference to the same variable definition, when I comment the second reference to the above, as noted for line 283, the error seems to abate.
line 1095 $gallery_modcache = cache_gallery_mods();
to
line 1095 //$gallery_modcache = cache_gallery_mods();
To get rid of the line 352 error, I had to comment out line 344 from gallery_global.php:
//$gallery_modcache =& $vbulletin->gal_mod_cache;
I am befuddled as to why this mod caching function is inducing this problem.