]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Bad variable name in File_redirection
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 13 Oct 2015 20:57:45 +0000 (22:57 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 13 Oct 2015 20:57:45 +0000 (22:57 +0200)
classes/File_redirection.php

index 2b6f86ed2728beb507d8a63bc09d7fec98de224f..08302c51d70a8306e368c6a51d7df41c4d17f06a 100644 (file)
@@ -336,7 +336,7 @@ class File_redirection extends Managed_DataObject
 
     static function saveNew($data, $file_id, $url) {
         $file_redir = new File_redirection;
-        $file_redir->urlhash = File::hashurl($short_url);
+        $file_redir->urlhash = File::hashurl($url);
         $file_redir->url = $url;
         $file_redir->file_id = $file_id;
         $file_redir->redirections = intval($data['redirects']);