Closed (fixed)
Project:
Cache
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
6 Aug 2009 at 10:39 UTC
Updated:
20 Aug 2009 at 14:40 UTC
...in bootstrap on line 443 - undefined index..
how about
- $cache_set = $cache_exists && $files[$type][$name] != $filename;
+ $cache_set = $cache_exists && (!isset($files[$type][$name]) || $files[$type][$name] != $filename);
?
Comments
Comment #1
doq commentedThanks. Committed.