From: Ulf Wendel Date: Tue, 24 Apr 2001 08:27:11 +0000 (+0000) Subject: Made Cache::save() a wrapper for Cache::extSave() X-Git-Tag: php-4.0.6RC1~329 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8bc32929169a94e3ec1b3b51974b2d5a1373e20;p=php Made Cache::save() a wrapper for Cache::extSave() --- diff --git a/pear/Cache.php b/pear/Cache.php index 8a8278c53c..3bf5be7206 100644 --- a/pear/Cache.php +++ b/pear/Cache.php @@ -173,7 +173,7 @@ class Cache extends PEAR { if ($this->no_cache) return true; - return $this->container->save($id, $data, $expires, $group, ""); + return $this->extSave($id, $data, "",$expires, $group); } // end func save /**