Removed old SqlBagOStuff alias
authorAaron Schulz <aschulz@wikimedia.org>
Sun, 25 Jan 2015 07:50:19 +0000 (23:50 -0800)
committerKunal Mehta <legoktm@gmail.com>
Fri, 6 Feb 2015 10:03:04 +0000 (02:03 -0800)
Change-Id: I6fdd8791713ce9ed67473065332266c217284974

RELEASE-NOTES-1.25
autoload.php
includes/objectcache/SqlBagOStuff.php

index a864025..3b7eef3 100644 (file)
@@ -40,6 +40,8 @@ production.
   rather than 'rsvg'.
 * Default value of $wgSVGConverters['ImageMagick'] now uses transparent
   background with white fallback color, rather than just white background.
+ * MediaWikiBagOStuff class removed, make sure any object cache config
+   uses SqlBagOStuff instead.
 
 === New features in 1.25 ===
 * (T64861) Updated plural rules to CLDR 26. Includes incompatible changes
index 948a6aa..5c515a0 100644 (file)
@@ -727,7 +727,6 @@ $wgAutoloadLocalClasses = array(
        'MediaTransformError' => __DIR__ . '/includes/media/MediaTransformOutput.php',
        'MediaTransformOutput' => __DIR__ . '/includes/media/MediaTransformOutput.php',
        'MediaWiki' => __DIR__ . '/includes/MediaWiki.php',
-       'MediaWikiBagOStuff' => __DIR__ . '/includes/objectcache/SqlBagOStuff.php',
        'MediaWikiI18N' => __DIR__ . '/includes/skins/MediaWikiI18N.php',
        'MediaWikiPageLinkRenderer' => __DIR__ . '/includes/title/MediaWikiPageLinkRenderer.php',
        'MediaWikiSite' => __DIR__ . '/includes/site/MediaWikiSite.php',
index 98cb284..03b0166 100644 (file)
@@ -780,9 +780,3 @@ class SqlBagOStuff extends BagOStuff {
                }
        }
 }
-
-/**
- * Backwards compatibility alias
- */
-class MediaWikiBagOStuff extends SqlBagOStuff {
-}