Index: trunk/phase3/includes/specials/SpecialVersion.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
29 | 29 | */ |
30 | 30 | class SpecialVersion extends SpecialPage { |
31 | | - private $firstExtOpened = true; |
| 31 | + private $firstExtOpened = false; |
32 | 32 | |
33 | 33 | static $viewvcUrls = array( |
34 | 34 | 'svn+ssh://svn.wikimedia.org/svnroot/mediawiki' => 'http://svn.wikimedia.org/viewvc/mediawiki', |
— | — | @@ -391,12 +391,12 @@ |
392 | 392 | $opt = array( 'colspan' => 4 ); |
393 | 393 | $out = ''; |
394 | 394 | |
395 | | - if( !$this->firstExtOpened ) { |
| 395 | + if( $this->firstExtOpened ) { |
396 | 396 | // Insert a spacing line |
397 | 397 | $out .= '<tr class="sv-space">' . Html::element( 'td', $opt ) . "</tr>\n"; |
398 | | - $this->firstExtOpened = true; |
399 | 398 | } |
400 | | - |
| 399 | + $this->firstExtOpened = true; |
| 400 | + |
401 | 401 | if( $name ) { |
402 | 402 | $opt['id'] = "sv-$name"; |
403 | 403 | } |