sbergmann               Fri Mar  2 02:29:35 2001 EDT

  Modified files:              
    /php4/pear  Cache.php 
  Log:
  Whitespace only.
  
Index: php4/pear/Cache.php
diff -u php4/pear/Cache.php:1.1 php4/pear/Cache.php:1.2
--- php4/pear/Cache.php:1.1     Thu Mar  1 08:32:28 2001
+++ php4/pear/Cache.php Fri Mar  2 02:29:34 2001
@@ -16,7 +16,7 @@
 // |          Sebastian Bergmann <[EMAIL PROTECTED]>               |
 // +----------------------------------------------------------------------+
 //
-// $Id: Cache.php,v 1.1 2001/03/01 16:32:28 chagenbu Exp $
+// $Id: Cache.php,v 1.2 2001/03/02 10:29:34 sbergmann Exp $
 
 /**
 * Cache is a base class for cache implementations.
@@ -24,7 +24,7 @@
 * TODO: Simple usage example goes here.
 *
 * @author   Ulf Wendel <[EMAIL PROTECTED]>
-* @version  $Id: Cache.php,v 1.1 2001/03/01 16:32:28 chagenbu Exp $
+* @version  $Id: Cache.php,v 1.2 2001/03/02 10:29:34 sbergmann Exp $
 * @package  Cache
 * @access   public 
 */
@@ -85,7 +85,7 @@
     {
         $storage_driver = strtolower($storage_driver);
         $storage_class = 'Cache_Container_' . $storage_driver;
-       $storage_classfile = 'Cache/Container/' . $storage_driver . '.php';
+        $storage_classfile = 'Cache/Container/' . $storage_driver . '.php';
        
         if (@include_once $storage_classfile) {
             $this->container = new $storage_class($storage_options);



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to