# HG changeset patch # User Dan # Date 1250877020 14400 # Node ID 6c84fb196026d5bfb2637f08e1bc71080054f75f # Parent 16a1e8626dd9a4a167149f380d565754ad758b14 Autofill: fixed missing parameter to $db->fetchrow() diff -r 16a1e8626dd9 -r 6c84fb196026 plugins/SpecialPageFuncs.php --- a/plugins/SpecialPageFuncs.php Fri Aug 21 13:49:45 2009 -0400 +++ b/plugins/SpecialPageFuncs.php Fri Aug 21 13:50:20 2009 -0400 @@ -640,7 +640,7 @@ if ( !$q ) $db->die_json(); - while ( $row = $db->fetchrow() ) + while ( $row = $db->fetchrow($q) ) { $key = array( 'name' => $row['username'],