aboutsummaryrefslogtreecommitdiff
path: root/src/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/functions.php')
-rw-r--r--src/functions.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/functions.php b/src/functions.php
deleted file mode 100644
index fd91360..0000000
--- a/src/functions.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-function isUrlAllowed($url)
-{
- $urlDomain = parse_url($url, PHP_URL_HOST);
- if (!in_array($urlDomain, $GLOBALS['phinde']['domains'])) {
- return false;
- }
- return true;
-}
-
-?>