Changeset 3196 for branches/2.0/admin
- Timestamp:
- Mar 14, 2009, 12:37:34 AM (16 years ago)
- Location:
- branches/2.0/admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/admin/include/functions.php
r3147 r3196 1742 1742 function pwg_URL() 1743 1743 { 1744 global $lang_info;1745 1744 $urls = array( 1746 ' WIKI' => 'http://'.PHPWG_DOMAIN.'/doc/',1747 ' HOME' => 'http://'.PHPWG_DOMAIN.'/',1748 'DEMO' => 'http:// demo.'.PHPWG_DOMAIN.'/',1749 'FORUM' => 'http:// forum.'.PHPWG_DOMAIN.'/',1750 'BUGS' => 'http:// bugs.'.PHPWG_DOMAIN.'/',1745 'HOME' => 'http://'.PHPWG_DOMAIN, 1746 'WIKI' => 'http://'.PHPWG_DOMAIN.'/doc', 1747 'DEMO' => 'http://'.PHPWG_DOMAIN.'/demo', 1748 'FORUM' => 'http://'.PHPWG_DOMAIN.'/forum', 1749 'BUGS' => 'http://'.PHPWG_DOMAIN.'/bugs', 1751 1750 'EXTENSIONS' => 'http://'.PHPWG_DOMAIN.'/ext', 1752 1751 ); 1753 if ( isset($lang_info['code']) and1754 in_array($lang_info['code'], array('fr','en')) )1755 { /* current wiki languages are French or English */1756 $urls['WIKI'] .= 'doku.php?id='.$lang_info['code'].':'.$lang_info['code'];1757 $urls['HOME'] .= '?lang='.$lang_info['code'];1758 }1759 1752 return $urls; 1760 1753 } -
branches/2.0/admin/intro.php
r3132 r3196 183 183 $template->assign( 184 184 array( 185 'PHPWG_URL' => PHPWG_URL, 185 186 'PWG_VERSION' => PHPWG_VERSION, 186 187 'OS' => PHP_OS, -
branches/2.0/admin/template/goto/footer.tpl
r2614 r3196 16 16 17 17 {'powered_by'|@translate} 18 <a href=" http://piwigo.org" class="Piwigo">18 <a href="{$PHPWG_URL}" class="Piwigo"> 19 19 <span class="Piwigo">Piwigo</span></a> 20 20 {$VERSION} -
branches/2.0/admin/template/goto/intro.tpl
r2658 r3196 5 5 <dd> 6 6 <ul> 7 <li><a href=" http://piwigo.org" onclick="window.open(this.href, '');7 <li><a href="{$PHPWG_URL}" onclick="window.open(this.href, ''); 8 8 return false;">Piwigo</a> {$PWG_VERSION}</li> 9 9 <li><a href="{$U_CHECK_UPGRADE}">{'Check for upgrade'|@translate}</a></li>
Note: See TracChangeset
for help on using the changeset viewer.