* Printable link shorter in monobook
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 26 Jun 2005 08:24:05 +0000 (08:24 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 26 Jun 2005 08:24:05 +0000 (08:24 +0000)
RELEASE-NOTES
UPGRADE
includes/SkinTemplate.php
languages/Language.php

index 0c0fce9..3df597a 100644 (file)
@@ -340,6 +340,11 @@ Various bugfixes, small features, and a few experimental things:
 * Added a versionRequired() function to OutputPage, useful for extension
   writers that want to control what version of MediaWiki their extension
   can be used with.
+* Serialized user objects now checked for versioning
+* Fix for interwiki link regression
+* Printable link shorter in monobook
+* Experimental Latin-1-and-replication-friendly upgrader script
+
 
 === Caveats ===
 
diff --git a/UPGRADE b/UPGRADE
index 68d2220..dffa094 100644 (file)
--- a/UPGRADE
+++ b/UPGRADE
@@ -64,6 +64,11 @@ Note that you can disable/enable several other permissions by modifying
 this configuration array in your LocalSettings.php; see DefaultSettings.php
 for the complete default permission set.
 
+If using Memcached, you must enabled it differently now:
+  $wgUseMemCached = true;
+should be replaced with:
+  $wgMainCacheType = CACHE_MEMCACHED;
+
 
 === Web installer ===
 
index 9f2eb32..9fabd2a 100644 (file)
@@ -710,7 +710,7 @@ class SkinTemplate extends Skin {
                if( $this->iscontent && ($action == '' || $action == 'view' || $action == 'purge' ) ) {
                        $content_actions['print'] = array(
                                'class' => false,
-                               'text' => wfMsg( 'printableversion' ),
+                               'text' => wfMsg( 'print' ),
                                'href' => $wgRequest->appendQuery( 'printable=yes' ) );
                }
 
index 898b4fd..7c927e1 100644 (file)
@@ -403,6 +403,7 @@ and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] f
 'history_short' => 'History',
 'info_short'   => 'Information',
 'printableversion' => 'Printable version',
+'print' => 'Print',
 'edit' => 'Edit',
 'editthispage' => 'Edit this page',
 'delete' => 'Delete',