From 4647d2281a6741d82a56c61a9b1cc821134110aa Mon Sep 17 00:00:00 2001 From: plegall Date: Sat, 14 May 2005 12:56:48 +0000 Subject: - bug 114 corrected : webmaster mail address protection. Ability to set an invalid mail address (but not during installation) git-svn-id: http://piwigo.org/svn/branches/branch-1_4@788 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/configuration.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/admin/configuration.php b/admin/configuration.php index efc1ece79..35e92c5b9 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -66,12 +66,8 @@ if (isset($_POST['submit'])) { array_push($errors, $lang['conf_prefix_thumbnail_error']); } - // mail must be formatted as follows : name@server.com - $pattern = '/^[\w-]+(\.[\w-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)+$/'; - if (!preg_match($pattern, $_POST['mail_webmaster'])) - { - array_push($errors, $lang['conf_mail_webmaster_error']); - } + // as webmaster mail address shown on the website, it can be obfuscated + // and no comply with normal mail address pattern break; } case 'comments' : -- cgit v1.2.3