From 23a2eec4d540b5f971ed6377e7ad776456ee0633 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 4 May 2009 08:31:55 +0000 Subject: - ereg -> preg --- bin/quotaimg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/quotaimg.php b/bin/quotaimg.php index fc3997a39..817d38590 100644 --- a/bin/quotaimg.php +++ b/bin/quotaimg.php @@ -102,7 +102,7 @@ function genQuota($used, $total, $width, $height) ***********************************/ // @todo: Set to "??" instead? - if (ereg("^[^0-9?]*$", $used) || ereg("^[^0-9?]*$", $total)) { + if (preg_match('/^[^0-9?]*$/', $used) || preg_match('/^[^0-9?]*$/', $total)) { return false; } -- cgit v1.2.3