*End parenthesis lost in output somehow, add it back
authorAaron Schulz <aaron@users.mediawiki.org>
Thu, 20 Mar 2008 00:31:16 +0000 (00:31 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Thu, 20 Mar 2008 00:31:16 +0000 (00:31 +0000)
*Remove hard-coded size attribute

includes/ChangesList.php

index 39b94a1..b0796ab 100644 (file)
@@ -591,6 +591,8 @@ class EnhancedChangesList extends ChangesList {
                                $r .= $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
                                        $nchanges[$n], $curIdEq."&diff=$currentRevision&oldid=$oldid" );
                        }
+                       
+                        $r .= ') . . ';
 
                        if( $wgRCShowChangedSize ) {
                                # Character difference
@@ -615,7 +617,7 @@ class EnhancedChangesList extends ChangesList {
                $r .= "</td></tr></table>\n";
 
                # Sub-entries
-               $r .= '<div id="'.$rci.'" style="display:none; font-size:95%;"><table cellpadding="0" cellspacing="0">';
+               $r .= '<div id="'.$rci.'" style="display:none;"><table cellpadding="0" cellspacing="0">';
                foreach( $block as $rcObj ) {
                        # Get rc_xxxx variables
                        // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.