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

Nitagob’s picture

Try 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.

vacilando’s picture

Status: Active » Fixed

If 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áš

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.