Ignore:
Timestamp:
Jul 22, 2009, 12:34:42 AM (15 years ago)
Author:
tiico
Message:

Some corrections
Add EN translation (only for the core, not for modules)
Add comment options (%ID)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Flash_Gallery/include/class.inc.php

    r3599 r3663  
    116116            {
    117117                $this->pos = 'end';
    118                 continue;
     118                return;
    119119            }
    120120
     
    122122                {
    123123                $authorized_groups = explode(',', $module['groups']);
    124                 if (array_intersect($this->user_groups, $authorized_groups) == array()) continue;
     124                if (array_intersect($this->user_groups, $authorized_groups) == array()) return;
    125125        }
    126126
     
    169169          $block['BGCOLOR'] = $module['bgcolor'];
    170170
    171           if ((include(FLASHGAL_PATH . 'modules/' . $module['type'] . '/main.inc.php')) === false) continue;
     171          if ((include(FLASHGAL_PATH . 'modules/' . $module['type'] . '/main.inc.php')) === false) return;
    172172         
    173173          $this->set_tpl_block($block, $module);
Note: See TracChangeset for help on using the changeset viewer.