fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2011-04-30 11:50 pm

[dw-free] Finduser console command sometimes doesn't show the payments status line

[commit: http://hg.dwscoalition.org/dw-free/rev/38d964a9ee75]

http://bugs.dwscoalition.org/show_bug.cgi?id=3652

Return explicitly, rather than relying on the implicit last value.

Patch by [personal profile] fu.

Files modified:
  • cgi-bin/DW/Hooks/Display.pm
--------------------------------------------------------------------------------
diff -r f86159d4bcfe -r 38d964a9ee75 cgi-bin/DW/Hooks/Display.pm
--- a/cgi-bin/DW/Hooks/Display.pm	Fri Apr 29 16:43:30 2011 +0800
+++ b/cgi-bin/DW/Hooks/Display.pm	Sun May 01 07:50:29 2011 +0800
@@ -43,6 +43,7 @@ LJ::Hooks::register_hook( 'finduser_extr
         $ret .= "  Unused invites: " . $numinvites . "\n";
     }
 
+    return $ret;
 });
 
 1;
--------------------------------------------------------------------------------