Merge some deployment changes to trunk: r82738 (as HISTORY), r81962
authorChad Horohoe <demon@users.mediawiki.org>
Wed, 30 Mar 2011 14:33:37 +0000 (14:33 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Wed, 30 Mar 2011 14:33:37 +0000 (14:33 +0000)
HISTORY
includes/ChangesList.php

diff --git a/HISTORY b/HISTORY
index 72e36ef..7dcd728 100644 (file)
--- a/HISTORY
+++ b/HISTORY
@@ -10,6 +10,12 @@ LocalSettings.php. Also, configuration script directory has been renamed
 from config/ to mw-config/. The specific bugs are listed below in the 
 general notes.
 
+=== New ResourceLoader in 1.17 ===
+MediaWiki 1.17 ships with a ResourceLoader which combines and minifies css and
+javascript attached to the page. They are served from the new entry point load.php
+If the page is served with the &debug=true parameter, the non-minified files
+are used instead.
+
 === Configuration changes in 1.17 ===
 * DatabaseFunctions.php that was needed for compatibility with pre-1.3
   extensions has been removed.
index 782a229..ec592ab 100644 (file)
@@ -1130,6 +1130,7 @@ class EnhancedChangesList extends ChangesList {
                $this->insertComment( $r, $rcObj );
                $this->insertRollback( $r, $rcObj );
                # Tags
+               $classes = explode( ' ', $classes );
                $this->insertTags( $r, $rcObj, $classes );
                # Show how many people are watching this if enabled
                $r .= $this->numberofWatchingusers($rcObj->numberofWatchingusers);