From 232288831d972d32a2386c850d60bd1836e25587 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 30 Mar 2011 14:33:37 +0000 Subject: [PATCH] Merge some deployment changes to trunk: r82738 (as HISTORY), r81962 --- HISTORY | 6 ++++++ includes/ChangesList.php | 1 + 2 files changed, 7 insertions(+) diff --git a/HISTORY b/HISTORY index 72e36ef901..7dcd72896e 100644 --- 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. diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 782a229cac..ec592ab83c 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -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); -- 2.20.1