Index: trunk/kernel/units/images/image_event_handler.php =================================================================== diff -u -N -r7391 -r8388 --- trunk/kernel/units/images/image_event_handler.php (.../image_event_handler.php) (revision 7391) +++ trunk/kernel/units/images/image_event_handler.php (.../image_event_handler.php) (revision 8388) @@ -15,6 +15,22 @@ $this->eventMethods = array_merge($this->eventMethods, $image_events); } + /** + * Get's special of main item for linking with subitem + * + * @param kEvent $event + * @return string + */ + function getMainSpecial(&$event) + { + if ($event->Special == 'list' && !$this->Application->IsAdmin()) { + // ListImages aggregated tag uses this special + return ''; + } + + return parent::getMainSpecial($event); + } + function customProcessing(&$event, $type) { $object =& $event->GetObject();