Closed (fixed)
Project:
Brilliant Gallery
Version:
5.x-2.14
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Nov 2007 at 00:57 UTC
Updated:
23 Dec 2007 at 13:51 UTC
I've found that if I change the contents of my albums (by moving images from one album to another or adding new images) the galleries displayed on my site aren't updated after a page refresh. The only way to get the galleries to refresh is to do the following:
*Disable the brilliant gallery module
*Re-enable the module
*Go to admin/settings/filters and make sure that the brilliant tag is selected for an input type format & make sure to save, even if the format box appears checked.
*Now refresh your galleries and they're properly updated.
Comments
Comment #1
Nitagob commentedTry to change the 'no cache' case at the filter() function in brilliant_gallery.module:
# Implementation of hook_filter().
function brilliant_gallery_filter($op, $delta = 0, $format = -1, $text = '') {
switch ($op) {
case 'no cache':
return TRUE; # it was FALSE originally
It have worked for me.
Comment #2
vacilando commentedIf you have a problem like this, just clear Drupal's cache, eg by clicking 'empty cache' provided by module Devel. You also may need to clear / refresh your browser's cache.
Nevertheless, I have now disabled caching for the filter, as indicated above, as it won't add any noticeable work for the server anyway.
Cheers,
Tomáš
Comment #3
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.