Index: kernel/db/cat_tag_processor.php =================================================================== --- kernel/db/cat_tag_processor.php (revision 14184) +++ kernel/db/cat_tag_processor.php (working copy) @@ -74,7 +74,24 @@ * @return string */ function ItemLink($params, $id_prefix = null) - { + { + if ( $this->Application->isAdmin ) { + // make sure all item links are build and shown correctly in Admin + if ( !isset($params['index_file']) ) { + $params['index_file'] = 'index.php'; + } + + if ( !isset($params['prefix']) ) { + $params['prefix'] = '_FRONT_END_'; + } + + if ( !isset($params['__MOD_REWRITE__']) ) { + if ($this->Application->ConfigValue('UseModRewrite')) { + $params['__MOD_REWRITE__'] = 1; + } + } + } + if (!isset($params['pass'])) { $params['pass'] = 'm,'.$this->Prefix; }