From efeb377a125a0b5bf1c7a6007482d3a43384dec3 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 6 Dec 2011 20:56:51 -0800
Subject: [PATCH] w3c valid cleanup

---
 mod/photos.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/mod/photos.php b/mod/photos.php
index 51d6a4b65c..bf3299de07 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'))