Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1626,6 +1626,7 @@ |
1627 | 1627 | if (strpos($line, '**') !== 0) { |
1628 | 1628 | $line = trim($line, '* '); |
1629 | 1629 | $heading = $line; |
| 1630 | + if( strlen($heading) == 0) $heading=''; |
1630 | 1631 | } else { |
1631 | 1632 | if (strpos($line, '|') !== false) { // sanity check |
1632 | 1633 | $line = explode( '|' , trim($line, '* '), 2 ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -336,6 +336,7 @@ |
337 | 337 | * (bug 6436) Localization of Special:Import XML parser Error message(s). |
338 | 338 | * Security fix for API on MSIE |
339 | 339 | * (bug 12768) Database query syntax error in maintenance/storage/compressOld.inc |
| 340 | +* (bug 12753) Empty captions in MediaWiki:Sidebar result in PHP errors |
340 | 341 | |
341 | 342 | == Parser changes in 1.12 == |
342 | 343 | |