Changeset 5254
- Timestamp:
- Mar 22, 2010, 12:09:32 PM (15 years ago)
- Location:
- branches/2.0/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/include/config_default.inc.php
r5013 r5254 43 43 // | misc | 44 44 // +-----------------------------------------------------------------------+ 45 46 // home_page : relative url of your homepage. Empty by default. It points to the index of the gallery. 47 $conf['home_page'] = ''; 45 48 46 49 // order_by : how to change the order of display for images in a category ? -
branches/2.0/include/functions_html.inc.php
r3127 r5254 240 240 global $conf; 241 241 242 $output = ' ';243 $is_first = true; 242 $output = '<a href="'.PHPWG_ROOT_PATH.$conf['home_page'].'">'.l10n('no_category').'</a>'; 243 244 244 foreach ($cat_informations as $cat) 245 245 { … … 254 254 ); 255 255 256 if ($is_first) 257 { 258 $is_first = false; 259 } 260 else 261 { 262 $output.= $conf['level_separator']; 263 } 256 $output.= $conf['level_separator']; 264 257 265 258 if ( !isset($url) ) -
branches/2.0/include/section_init.inc.php
r3046 r5254 239 239 else 240 240 { 241 $page['title'] = l10n('no_category');241 $page['title'] = '<a href="'.PHPWG_ROOT_PATH.$conf['home_page'].'">'.l10n('no_category').'</a>'; 242 242 } 243 243
Note: See TracChangeset
for help on using the changeset viewer.