diff options
author | rub <rub@piwigo.org> | 2009-04-26 14:59:15 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2009-04-26 14:59:15 +0000 |
commit | 1bbf9a9f64b2c27009ee2bc2c39d8d4b25714c6f (patch) | |
tree | e991db050f37415bed401e14ee435df52381f6ee /include | |
parent | ce93e60cb0f3f7f8ff160fce507c46cb37a1b6a1 (diff) |
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
Diffstat (limited to '')
-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 2f6d16ed3..7e630439c 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; } |