Rollback "Missing <ul> on NBM" in order to dd <ul> on feed too.

git-svn-id: http://piwigo.org/svn/trunk@3257 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rub 2009-04-26 14:59:15 +00:00
parent ce93e60cb0
commit 1bbf9a9f64
2 changed files with 4 additions and 2 deletions

View file

@ -522,7 +522,7 @@ function get_html_description_recent_post_date($date_detail)
{
global $conf;
$description = '';
$description = '<ul>';
$description .=
'<li>'
@ -564,6 +564,8 @@ function get_html_description_recent_post_date($date_detail)
}
$description .= '</ul>';
$description .= '</ul>';
return $description;
}