Index: trunk/phase3/HISTORY |
— | — | @@ -10,6 +10,12 @@ |
11 | 11 | from config/ to mw-config/. The specific bugs are listed below in the |
12 | 12 | general notes. |
13 | 13 | |
| 14 | +=== New ResourceLoader in 1.17 === |
| 15 | +MediaWiki 1.17 ships with a ResourceLoader which combines and minifies css and |
| 16 | +javascript attached to the page. They are served from the new entry point load.php |
| 17 | +If the page is served with the &debug=true parameter, the non-minified files |
| 18 | +are used instead. |
| 19 | + |
14 | 20 | === Configuration changes in 1.17 === |
15 | 21 | * DatabaseFunctions.php that was needed for compatibility with pre-1.3 |
16 | 22 | extensions has been removed. |
Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -1130,6 +1130,7 @@ |
1131 | 1131 | $this->insertComment( $r, $rcObj ); |
1132 | 1132 | $this->insertRollback( $r, $rcObj ); |
1133 | 1133 | # Tags |
| 1134 | + $classes = explode( ' ', $classes ); |
1134 | 1135 | $this->insertTags( $r, $rcObj, $classes ); |
1135 | 1136 | # Show how many people are watching this if enabled |
1136 | 1137 | $r .= $this->numberofWatchingusers($rcObj->numberofWatchingusers); |
Property changes on: trunk/phase3/includes/ChangesList.php |
___________________________________________________________________ |
Modified: svn:mergeinfo |
1137 | 1138 | Merged /branches/wmf/1.17wmf1/includes/ChangesList.php:r81926 |