Chapter 15. Caching, Page 361
Wed, 08/20/2008 - 10:48am — jvandyk
Location on the page:
Code example at top (from filter.module)
Chapter:
15. Caching
Error:
cache_set($cid, 'cache_filter', $text, time() + (60 * 60 * 24));
Correction:
cache_set($cid, $text, 'cache_filter', time() + (60 * 60 * 24));
Description of the Error:
Order of second and third parameters are switched.
