diff options
-rw-r--r-- | custom/views/archive/top.tpl.php | 5 | ||||
-rw-r--r-- | custom/views/default/top.tpl.php | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/custom/views/archive/top.tpl.php b/custom/views/archive/top.tpl.php index 9533c15..7a818e1 100644 --- a/custom/views/archive/top.tpl.php +++ b/custom/views/archive/top.tpl.php @@ -1,3 +1,4 @@ <div id="top"> - <h1><a href="./index.php"><?php echo $PlanetConfig->getName(); ?></a></h1> - </div>
\ No newline at end of file + <h1><a href="<?php echo $PlanetConfig->getUrl() ?>"><?php echo $PlanetConfig->getName(); ?></a></h1> + </div> +
\ No newline at end of file diff --git a/custom/views/default/top.tpl.php b/custom/views/default/top.tpl.php index e0ea5b9..dd6206f 100644 --- a/custom/views/default/top.tpl.php +++ b/custom/views/default/top.tpl.php @@ -1,3 +1,3 @@ <div id="header"> - <h1 id="top"><a href="./index.php"><?php echo $PlanetConfig->getName(); ?></a></h1> + <h1 id="top"><a href="<?php echo $PlanetConfig->getUrl() ?>"><?php echo $PlanetConfig->getName(); ?></a></h1> </div>
\ No newline at end of file |