aboutsummaryrefslogtreecommitdiffstats
path: root/nbm.php
diff options
context:
space:
mode:
Diffstat (limited to 'nbm.php')
-rw-r--r--nbm.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/nbm.php b/nbm.php
index a15da2dc3..3e89df03f 100644
--- a/nbm.php
+++ b/nbm.php
@@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
-// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
+// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@@ -45,15 +45,14 @@ if (isset($_GET['subscribe'])
{
subscribe_notification_by_mail(false, array($_GET['subscribe']));
}
-else
-if (isset($_GET['unsubscribe'])
+else if (isset($_GET['unsubscribe'])
and preg_match('/^[A-Za-z0-9]{16}$/', $_GET['unsubscribe']))
{
unsubscribe_notification_by_mail(false, array($_GET['unsubscribe']));
}
else
{
- array_push($page['errors'], l10n('Unknown identifier'));
+ $page['errors'][] = l10n('Unknown identifier');
}
// +-----------------------------------------------------------------------+