From 246634cb72fdd3c9e0b9f67be2bb9e7fe12aabee Mon Sep 17 00:00:00 2001 From: patdenice Date: Wed, 14 Oct 2009 15:06:36 +0000 Subject: Replace some ereg function (depreciated) by preg_match. git-svn-id: http://piwigo.org/svn/branches/2.0@4035 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/thumbnail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'admin') diff --git a/admin/thumbnail.php b/admin/thumbnail.php index 3034e8478..0fd72242f 100644 --- a/admin/thumbnail.php +++ b/admin/thumbnail.php @@ -231,11 +231,11 @@ if (isset($_POST['submit'])) $infos = array(); // checking criteria - if (!ereg('^[0-9]{2,3}$', $_POST['width']) or $_POST['width'] < 10) + if (!preg_match('/^[0-9]{2,3}$/', $_POST['width']) or $_POST['width'] < 10) { array_push($page['errors'], l10n('tn_err_width').' 10'); } - if (!ereg('^[0-9]{2,3}$', $_POST['height']) or $_POST['height'] < 10) + if (!preg_match('/^[0-9]{2,3}$/', $_POST['height']) or $_POST['height'] < 10) { array_push($page['errors'], l10n('tn_err_height').' 10'); } -- cgit v1.2.3