diff options
Diffstat (limited to 'nbm.php')
-rw-r--r-- | nbm.php | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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'); } // +-----------------------------------------------------------------------+ |