Ignore:
Timestamp:
Jan 24, 2015, 12:53:19 AM (9 years ago)
Author:
SergeD
Message:

version 1.1.21 - small fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/greydragon/include/greydragon.class.php

    r30900 r30902  
    33if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
    44
    5 define('GDTHEME_VERSION', '1.1.20');
     5define('GDTHEME_VERSION', '1.1.21');
    66
    77define("QUOTES_NONE",   FALSE);
     
    354354
    355355    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>';
    357357    endif;
    358358    if ($this->hasOption('p_header')):
     
    365365    $p_header = trim(str_replace('%gallery_title%', $conf['gallery_title'], $p_header));
    366366    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>';
    368368    endif;
    369369
Note: See TracChangeset for help on using the changeset viewer.