Created
October 27, 2014 14:25
-
-
Save eugene-ilyin/358e3786a547321adf91 to your computer and use it in GitHub Desktop.
Revisions
-
eugene-ilyin created this gist
Oct 27, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ /** * Check url for external property. */ function module_url_is_external($path) { global $base_url; $url_host = parse_url($path); if (empty($url_host['host']) && empty($url_host['scheme'])) { return FALSE; } else { if ($url_host['scheme'] . '://' . $url_host['host'] === substr($base_url, 0, strlen($url_host['scheme'] . '://' . $url_host['host']))) { return FALSE; } } return TRUE; }