diff options
author | rub <rub@piwigo.org> | 2009-04-26 15:00:57 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2009-04-26 15:00:57 +0000 |
commit | ef20fa17b5c6da034f57db52b1a2f198059762d9 (patch) | |
tree | 10d181627afb82d0f6a9a49acad2ebc05079ee23 /include/functions_notification.inc.php | |
parent | f81888fc2e3434e744c68151609ace404ad3e399 (diff) |
merge -c3257 from trunk to branch 2.0
Rollback "Missing <ul> on NBM" in order to dd <ul> on feed too.
git-svn-id: http://piwigo.org/svn/branches/2.0@3258 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_notification.inc.php')
-rw-r--r-- | include/functions_notification.inc.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/functions_notification.inc.php b/include/functions_notification.inc.php index 885dba6e6..dc955ec20 100644 --- a/include/functions_notification.inc.php +++ b/include/functions_notification.inc.php @@ -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; } |