]> granicus.if.org Git - php/commitdiff
fixed typo
authorMartin Jansen <mj@php.net>
Sun, 4 Mar 2001 14:26:58 +0000 (14:26 +0000)
committerMartin Jansen <mj@php.net>
Sun, 4 Mar 2001 14:26:58 +0000 (14:26 +0000)
pear/Cache.php

index 67c838c3ec58017076291b8dcac2c21f1093ae48..d21f500497f78efbf032e43e2824787d6944823f 100644 (file)
@@ -86,7 +86,7 @@ class Cache {
         $storage_class = 'Cache_Container_' . $storage_driver;
         $storage_classfile = 'Cache/Container/' . $storage_driver . '.php';
 
-        include_once $storage_classfile
+        include_once $storage_classfile;
         $this->container = new $storage_class($storage_options);
         $this->garbageCollection();