diff options
author | rvelices <rv-github@modusoptimus.com> | 2011-01-14 20:51:53 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2011-01-14 20:51:53 +0000 |
commit | 4d3aa6331efa96ddaede756e1d91693c76ecfc2d (patch) | |
tree | e1cbcbfb2548adb74ecae668ae2e67a49c070fc6 /include/functions_notification.inc.php | |
parent | 68b4f245612e3cbaf15ef4fa20f3f7f3728fbfed (diff) |
feature 2108 upload removal correct syntax error
git-svn-id: http://piwigo.org/svn/trunk@8664 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_notification.inc.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/functions_notification.inc.php b/include/functions_notification.inc.php index 18700e062..f4789470b 100644 --- a/include/functions_notification.inc.php +++ b/include/functions_notification.inc.php @@ -354,8 +354,7 @@ function news_exists($start, $end) (nb_new_elements($start, $end) > 0) or (nb_updated_categories($start, $end) > 0) or ((is_admin()) and (nb_unvalidated_comments($start, $end) > 0)) or - ((is_admin()) and (nb_new_users($start, $end) > 0))) - ); + ((is_admin()) and (nb_new_users($start, $end) > 0))); } /** @@ -530,7 +529,7 @@ function get_html_description_recent_post_date($date_detail) .l10n_dec('%d new image', '%d new images', $date_detail['nb_elements']) .' (' .'<a href="'.make_index_url(array('section'=>'recent_pics')).'">' - .l10n('Recent pictures').'</a>' + .l10n('Recent photos').'</a>' .')' .'</li><br>'; |