- Timestamp:
- Jan 17, 2009, 11:13:31 PM (16 years ago)
- Location:
- branches/2.0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/include/config_default.inc.php
r3046 r3090 221 221 // ); 222 222 $conf['random_index_redirect'] = array(); 223 224 // reverse_home_title: if Piwigo is your home page for a better robot index 225 // we recommend to set it true (Only index page will reverse its title) 226 $conf['reverse_home_title'] = false; 223 227 224 228 // List of notes to display on all header page -
branches/2.0/include/page_header.php
r3046 r3090 43 43 isset($page['body_id']) ? 44 44 $page['body_id'] : '', 45 46 'REVERSE' => 47 (isset($conf['reverse_home_title']) and $conf['reverse_home_title']) ? 48 true : false, 45 49 46 50 'CONTENT_ENCODING' => get_pwg_charset(), -
branches/2.0/template/yoga/header.tpl
r3040 r3090 19 19 {/if} 20 20 21 <title>{$GALLERY_TITLE} :: {$PAGE_TITLE}</title> 21 {if (isset($REVERSE) and $REVERSE and $PAGE_TITLE == l10n('home'))} 22 <title>{$GALLERY_TITLE} | {$PAGE_TITLE}</title>{else} 23 <title>{$PAGE_TITLE} | {$GALLERY_TITLE}</title>{/if} 22 24 <link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}template-common/favicon.ico"> 23 25
Note: See TracChangeset
for help on using the changeset viewer.