Changeset 30902 for extensions/greydragon
- Timestamp:
- Jan 24, 2015, 12:53:19 AM (10 years ago)
- Location:
- extensions/greydragon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/greydragon/changelog.txt
r30900 r30902 18 18 19 19 === Changelog === 20 version 1.1.21 21 - Another attempt to fix issue with root url associated with gallery logo was not referring to the sites root properly when installed as sub-folder 22 20 23 version 1.1.20 21 24 + ADMIN: Added support for various Favicon types including Apple Touch … … 23 26 + Localization added for Admin Help area 24 27 + Added support for %gallery_title% in header text/page banner 25 - Fixed issue with root url associated with gallery logo was not refer ing to the sites root properly when installed as sub-folder28 - Fixed issue with root url associated with gallery logo was not referring to the sites root properly when installed as sub-folder 26 29 27 30 version 1.1.19 -
extensions/greydragon/include/greydragon.class.php
r30900 r30902 3 3 if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); 4 4 5 define('GDTHEME_VERSION', '1.1.2 0');5 define('GDTHEME_VERSION', '1.1.21'); 6 6 7 7 define("QUOTES_NONE", FALSE); … … 354 354 355 355 if ($this->hasOption('p_logo_path')): 356 $content .= '<a title="Home" id="g-logo" href="' . $root_base. '"><img alt="Home" src="' . $root_base . $this->getOption('p_logo_path') . '"></a>';356 $content .= '<a title="Home" id="g-logo" href="' . get_gallery_home_url() . '"><img alt="Home" src="' . $root_base . $this->getOption('p_logo_path') . '"></a>'; 357 357 endif; 358 358 if ($this->hasOption('p_header')): … … 365 365 $p_header = trim(str_replace('%gallery_title%', $conf['gallery_title'], $p_header)); 366 366 if (strlen($p_header) > 0): 367 $content .= '<a title="Home" id="g-header-text" href=" {$U_HOME}">' . $p_header . '</a>';367 $content .= '<a title="Home" id="g-header-text" href="' . get_gallery_home_url() . '">' . $p_header . '</a>'; 368 368 endif; 369 369 -
extensions/greydragon/themeconf.inc.php
r30900 r30902 2 2 /* 3 3 Theme Name: GreyDragon 4 Version: 1.1.2 04 Version: 1.1.21 5 5 Description: GreyDragon Theme 6 6 Theme URI: http://piwigo.org/ext/extension_view.php?eid=775
Note: See TracChangeset
for help on using the changeset viewer.