summaryrefslogtreecommitdiff
path: root/classes/File_redirection.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-09-27 16:52:15 -0400
committerCraig Andrews <candrews@integralblue.com>2009-09-27 16:52:15 -0400
commitfc2426d7ce33bba0e1ad4dfc1ed9af7749695b20 (patch)
tree4a6b9cf632e10f8b947a4d8b9be56a1c69d46674 /classes/File_redirection.php
parent7f3c1ac2beca8f0e21c002930a5df6dc2d9415ad (diff)
Fix some bugs in the URL linkification, and fixed the unit test.
Diffstat (limited to 'classes/File_redirection.php')
-rw-r--r--classes/File_redirection.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/classes/File_redirection.php b/classes/File_redirection.php
index 76b18f672..79052bf7d 100644
--- a/classes/File_redirection.php
+++ b/classes/File_redirection.php
@@ -79,6 +79,9 @@ class File_redirection extends Memcached_DataObject
}
}
+ if(strpos($short_url,'://') === false){
+ return $short_url;
+ }
$curlh = File_redirection::_commonCurl($short_url, $redirs);
// Don't include body in output
curl_setopt($curlh, CURLOPT_NOBODY, true);