diff options
author | Nathan Kinkade <nkinkade@nkinka.de> | 2010-08-20 01:26:51 +0000 |
---|---|---|
committer | Nathan Kinkade <nkinkade@nkinka.de> | 2010-08-20 01:26:51 +0000 |
commit | 39d30154332c2daff124c65b8b784e8c6e1058c1 (patch) | |
tree | b8be3e33dab2f52a70c4dd395f33d81e25620b8b | |
parent | 45b6d344b4a5431e7cf11fde5808c63bf7553676 (diff) |
Cause default Wind them to not display photo titles either on album or photo view.
-rw-r--r-- | themes/wind/views/album.html.php | 2 | ||||
-rw-r--r-- | themes/wind/views/photo.html.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/themes/wind/views/album.html.php b/themes/wind/views/album.html.php index de196be0..43565b45 100644 --- a/themes/wind/views/album.html.php +++ b/themes/wind/views/album.html.php @@ -21,7 +21,7 @@ <?= $theme->thumb_bottom($child) ?> <?= $theme->context_menu($child, "#g-item-id-{$child->id} .g-thumbnail") ?> <h2><span class="<?= $item_class ?>"></span> - <a href="<?= $child->url() ?>"><?= html::purify($child->title) ?></a></h2> + <a href="<?= $child->url() ?>"><!--<?= html::purify($child->title) ?>--></a></h2> <ul class="g-metadata"> <?= $theme->thumb_info($child) ?> </ul> diff --git a/themes/wind/views/photo.html.php b/themes/wind/views/photo.html.php index f8b5511c..c17d6b90 100644 --- a/themes/wind/views/photo.html.php +++ b/themes/wind/views/photo.html.php @@ -30,7 +30,7 @@ </div> <div id="g-info"> - <h1><?= html::purify($item->title) ?></h1> + <!-- <h1><?= html::purify($item->title) ?></h1> --> <div><?= nl2br(html::purify($item->description)) ?></div> </div> |