diff options
-rw-r--r-- | engine/lib/output.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engine/lib/output.php b/engine/lib/output.php index aeaa7e5a8..cba1ffae9 100644 --- a/engine/lib/output.php +++ b/engine/lib/output.php @@ -235,6 +235,7 @@ function elgg_clean_vars(array $vars = array()) { */ function elgg_normalize_url($url) { // 'http://example.com', 'https://example.com', '//example.com' + // '#target', '?query=string' if (preg_match("#^(\#|\?|(https?:)?//)#i", $url)) { return $url; } |