aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions.inc.php
diff options
context:
space:
mode:
authormistic100 <mistic@piwigo.org>2014-02-04 11:02:38 +0000
committermistic100 <mistic@piwigo.org>2014-02-04 11:02:38 +0000
commit922de9a63d4d503b275813cce6b9d3682d1b2a25 (patch)
treede98199db67020ff8b725703582789de2e84242a /include/functions.inc.php
parentf286327ad680a5321d7fa77314f0b44f4823eb31 (diff)
remove PHP < 5.2 code
git-svn-id: http://piwigo.org/svn/trunk@27158 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions.inc.php')
-rw-r--r--include/functions.inc.php23
1 files changed, 2 insertions, 21 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php
index a08bd94b4..acb68ac58 100644
--- a/include/functions.inc.php
+++ b/include/functions.inc.php
@@ -2018,15 +2018,7 @@ function mobile_theme()
*/
function url_check_format($url)
{
- if (version_compare(PHP_VERSION, '5.2.0') >= 0)
- {
- return filter_var($url, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED | FILTER_FLAG_HOST_REQUIRED)!==false;
- }
- else
- {
- // http://mathiasbynens.be/demo/url-regex @imme_emosol
- return (bool)preg_match('@^https?://(-\.)?([^\s/?\.#-]+\.?)+(/[^\s]*)?$@iS', $url);
- }
+ return filter_var($url, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED | FILTER_FLAG_HOST_REQUIRED)!==false;
}
/**
@@ -2037,18 +2029,7 @@ function url_check_format($url)
*/
function email_check_format($mail_address)
{
- if (version_compare(PHP_VERSION, '5.2.0') >= 0)
- {
- return filter_var($mail_address, FILTER_VALIDATE_EMAIL)!==false;
- }
- else
- {
- $atom = '[-a-z0-9!#$%&\'*+\\/=?^_`{|}~]'; // before arobase
- $domain = '([a-z0-9]([-a-z0-9]*[a-z0-9]+)?)'; // domain name
- $regex = '/^' . $atom . '+' . '(\.' . $atom . '+)*' . '@' . '(' . $domain . '{1,63}\.)+' . $domain . '{2,63}$/i';
-
- return (bool)preg_match($regex, $mail_address);
- }
+ return filter_var($mail_address, FILTER_VALIDATE_EMAIL)!==false;
}
/**