Home » Bug #2393
typo in example code of cache_lite_output
Details
| Submitted | 2004-09-24 20:32 UTC |
|---|---|
| From | brammeleman at brammeleman dot org |
| Assigned | arnaud |
| Status | Closed |
| Package | Documentation |
| PHP Version | 4.3.8 |
| Roadmaps | (Not assigned) |
Comments
[2004-09-24 20:32 UTC] brammeleman at brammeleman dot org
Description:
------------
There is a typo in the sample code at http://pear.php.net/manual/en/package.default.cache-lite.cache-lite-output.start.php.
Line 9 of the first example misses a 'new' statement.
$cache = Cache_Lite_Output($options);
should be:
$cache = new Cache_Lite_Output($options);
Took me 15 minutes to find out... after a lazy copy-paste action ;-)