aboutsummaryrefslogtreecommitdiffstats
path: root/mod/photos.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-12-06 20:56:51 -0800
committerfriendica <info@friendica.com>2011-12-06 20:56:51 -0800
commitefeb377a125a0b5bf1c7a6007482d3a43384dec3 (patch)
tree3f7f1e62975dc58ac51f5e27bf62a63506dab92c /mod/photos.php
parent341fcce75ec8d16538eec6ebcdfbdd00711c6638 (diff)
downloadvolse-hubzilla-efeb377a125a0b5bf1c7a6007482d3a43384dec3.tar.gz
volse-hubzilla-efeb377a125a0b5bf1c7a6007482d3a43384dec3.tar.bz2
volse-hubzilla-efeb377a125a0b5bf1c7a6007482d3a43384dec3.zip
w3c valid cleanup
Diffstat (limited to 'mod/photos.php')
-rw-r--r--mod/photos.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/photos.php b/mod/photos.php
index 51d6a4b65..bf3299de0 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -39,7 +39,7 @@ function photos_init(&$a) {
$o .= '</div>';
$o .= '<div id="side-bar-photos-albums" class="widget">';
- $o .= '<h3>' . '<a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '">' . t('Photo Albums') . '</a></h4>';
+ $o .= '<h3>' . '<a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '">' . t('Photo Albums') . '</a></h3>';
$o .= '<ul>';
foreach($albums as $album) {
@@ -49,9 +49,11 @@ function photos_init(&$a) {
if((! strlen($album['album'])) || ($album['album'] === 'Contact Photos') || ($album['album'] === t('Contact Photos')))
continue;
- $o .= '<li>' . '<a href="photos/' . $a->argv[1] . '/album/' . bin2hex($album['album']) . '" />' . $album['album'] . '</a></li>';
+ $o .= '<li>' . '<a href="photos/' . $a->argv[1] . '/album/' . bin2hex($album['album']) . '" >' . $album['album'] . '</a></li>';
}
$o .= '</ul>';
+
+ $o .= '</div>';
}
if(! x($a->page,'aside'))