diff -r 66732bd4532c -r bb3e6c3bd4f4 plugins/SpecialUserFuncs.php --- a/plugins/SpecialUserFuncs.php Sat Jan 26 11:51:19 2008 -0500 +++ b/plugins/SpecialUserFuncs.php Sat Jan 26 15:42:32 2008 -0500 @@ -1071,7 +1071,7 @@ echo ' ' . $lang->get('history_col_actions') . ' '; } - ++$$current; + $$current++; $cls = ( $cls == 'row1' ) ? 'row2' : 'row1'; echo ''; @@ -1162,7 +1162,10 @@ if ( $current == 'cnt_edits' ) { // no "other" edits, close the table - echo ''; + if ( $cnt_edits > 0 ) + echo ''; + else + echo '

' . $lang->get('userfuncs_contribs_msg_no_edits') . '

'; echo '

' . $lang->get('userfuncs_contribs_heading_other') . '

'; echo '

' . $lang->get('userfuncs_contribs_msg_no_other') . '

'; }