diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-04 14:51:31 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-04 14:51:31 -0400 |
commit | d251e624a9885fdd5ca9a3de446071606c1ac54d (patch) | |
tree | fec9bc238eadd1b77db006a54fb2797f48299959 /lib/util.php | |
parent | d266ab8c2dd57d9562b9252c70828c8a9f9b1a93 (diff) |
full interface for userauthorization
darcs-hash:20080604185131-84dde-2ff45e07ebba18c97803ed4a99121a6244ef1158.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index de15d13de..a222f85f6 100644 --- a/lib/util.php +++ b/lib/util.php @@ -588,4 +588,8 @@ function common_log($priority, $msg) { function common_debug($msg) { common_log(LOG_DEBUG, $msg); -}
\ No newline at end of file +} + +function common_valid_http_url($url) { + return Validate::uri($url, array('allowed_schemes' => array('http', 'https'))); +} |