Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -1541,7 +1541,7 @@ |
1542 | 1542 | if ( $userInputAttrs ) |
1543 | 1543 | $inputAttrs += $userInputAttrs; |
1544 | 1544 | $spanLabelAttrs = array( |
1545 | | - 'class' => $summaryClass, |
| 1545 | + 'class' => @$summaryClass, |
1546 | 1546 | 'id' => "wpSummaryLabel" |
1547 | 1547 | ); |
1548 | 1548 | if ( is_array($userSpanLabelAttrs) ) |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1618,7 +1618,7 @@ |
1619 | 1619 | * to ensure that client-side caches do not keep obsolete copies of global |
1620 | 1620 | * styles. |
1621 | 1621 | */ |
1622 | | -$wgStyleVersion = '254'; |
| 1622 | +$wgStyleVersion = '255'; |
1623 | 1623 | |
1624 | 1624 | |
1625 | 1625 | # Server-side caching: |
Index: trunk/phase3/js2/js2stopgap.js |
— | — | @@ -610,7 +610,7 @@ |
611 | 611 | }; |
612 | 612 | |
613 | 613 | // exclude the following css properties to add px |
614 | | -var exclude = / z - ? index | font - ? weight | opacity | zoom | line - ? height /i, |
| 614 | +var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i, |
615 | 615 | // cache defaultView |
616 | 616 | defaultView = document.defaultView || { }, |
617 | 617 | toString = Object.prototype.toString; |