diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-08-27 07:56:19 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-08-27 07:56:19 -0700 |
commit | f1fda6c0503e32edfc99b297f4bf2cb07e629d9e (patch) | |
tree | 4190903afb80c20b7e98c95e6ea8d57ced0695d9 /classes | |
parent | 209486d3be877d85b3e241797e6042283d0f66d6 (diff) | |
parent | fd53fba114283935a304ed2e05111da256ae798f (diff) |
Merge branch '0.8.x' into 0.9.x
Diffstat (limited to 'classes')
-rw-r--r-- | classes/File_redirection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/File_redirection.php b/classes/File_redirection.php index d6fa0bcb6..363e3b947 100644 --- a/classes/File_redirection.php +++ b/classes/File_redirection.php @@ -182,7 +182,7 @@ class File_redirection extends Memcached_DataObject } } - if (('ftp' == $p['scheme']) || ('http' == $p['scheme']) || ('https' == $p['scheme'])) { + if (('ftp' == $p['scheme']) || ('ftps' == $p['scheme']) || ('http' == $p['scheme']) || ('https' == $p['scheme'])) { if (empty($p['host'])) return false; if (empty($p['path'])) { $out_url .= '/'; |