woo, revert the revert, apc 3.0.8 seems to work with this :)
[lhc/web/wiklou.git] / includes / CacheManager.php
index 98a16ae..b9e307f 100644 (file)
@@ -5,11 +5,6 @@
  * @subpackage Cache
  */
 
-/**
- * We need the title class
- */
-require_once( 'Title.php' );
-
 /**
  * Handles talking to the file cache, putting stuff in and taking it back out.
  * Mostly called from Article.php, also from DatabaseFunctions.php for the
@@ -24,9 +19,7 @@ require_once( 'Title.php' );
  * @package MediaWiki
  */
 class CacheManager {
-       private
-               $mTitle,
-               $mFileCache;
+       var $mTitle, $mFileCache;
 
        function CacheManager( &$title ) {
                $this->mTitle =& $title;