summaryrefslogtreecommitdiff
path: root/themes/default/views/header.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/views/header.html.php')
-rw-r--r--themes/default/views/header.html.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php
index e1e52bda..5428d9fd 100644
--- a/themes/default/views/header.html.php
+++ b/themes/default/views/header.html.php
@@ -3,8 +3,8 @@
<? if ($header_text = module::get_var("gallery", "header_text")): ?>
<?= $header_text ?>
<? else: ?>
-<a href="<?= url::site("albums/1") ?>">
- <img width="107" height="48" id="gLogo" alt="<?= t("Gallery: Your photos on your web site") ?>" src="<?= $theme->url("images/logo.png") ?>" />
+<a id="gLogo" href="<?= url::site("albums/1") ?>" title="<?= t("go back to the Gallery home") ?>">
+ <img width="107" height="48" alt="<?= t("Gallery logo: Your photos on your web site") ?>" src="<?= $theme->theme_url("images/logo.png") ?>" />
</a>
<? endif ?>
@@ -19,10 +19,10 @@
<? foreach ($parents as $parent): ?>
<li>
<a href="<?= url::site("albums/{$parent->id}?show=$item->id") ?>">
- <?= p::clean($parent->title) ?>
+ <?= p::purify($parent->title) ?>
</a>
</li>
<? endforeach ?>
- <li class="active"><?= p::clean($item->title) ?></li>
+ <li class="active"><?= p::purify($item->title) ?></li>
</ul>
<? endif ?>