https://bugzilla.wikimedia.org/show_bug.cgi?id=13000
Siebrand <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |FIXED --- Comment #7 from Siebrand <[email protected]> 2012-10-24 17:36:39 UTC --- The wanted newline is in the code now. Considering this issue closed. OutputPage.php: 2193 if ( count( $errors ) > 1 ) { 2194 $text .= '<ul class="permissions-errors">' . "\n"; 2195 2196 foreach( $errors as $error ) { 2197 $text .= '<li>'; 2198 $text .= call_user_func_array( array( $this, 'msg' ), $error )->plain(); 2199 $text .= "</li>\n"; 2200 } 2201 $text .= '</ul>'; 2202 } else { 2203 $text .= "<div class=\"permissions-errors\">\n" . 2204 call_user_func_array( array( $this, 'msg' ), reset( $errors ) )->plain() . 2205 "\n</div>"; 2206 } -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
