"Thomas Corell" said:
I found this in SpecialContributions.php (about line 72):
if ( 0 == $nCur && 0 == $nOld && 0 == $rcrows ) { $wgOut->addHTML( "\n<p>" . wfMsg( "nocontribs" ) . "</p>\n" ); return; }
What I'm missing is the $rcrows variable initialisation. Hopefully php init it with 0, but I'm not sure.
I don't know where or if $rcrows is initialized, but uninitialized variables in PHP 4 are set to NULL which == 0.