]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
File_redirection minor coding layout fix
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 7 Jul 2015 17:59:43 +0000 (19:59 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 7 Jul 2015 17:59:43 +0000 (19:59 +0200)
classes/File_redirection.php

index e0d68b73308c665945cfc84f52b008d521165e30..75a3b577ae687f33e6ad65e44cef9afc6a46ec67 100644 (file)
@@ -176,7 +176,7 @@ class File_redirection extends Managed_DataObject
             try {
                 $b = File_redirection::getByUrl($in_url);
                 // this is a redirect to $b->file_id
-                $a = File::getKV('id', $b->file_id);
+                $a = File::getByID($b->file_id);
                 return $a->url;
             } catch (NoResultException $e) {
                 // Oh well, let's keep going
@@ -186,10 +186,10 @@ class File_redirection extends Managed_DataObject
         if ($discover) {
             $ret = File_redirection::lookupWhere($in_url);
             return $ret;
-        } else {
-            // No manual dereferencing; leave the unknown URL as is.
-            return $in_url;
         }
+
+        // No manual dereferencing; leave the unknown URL as is.
+        return $in_url;
     }
 
     /**