diff options
Diffstat (limited to 'lib/exe/js.php')
-rw-r--r-- | lib/exe/js.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/js.php b/lib/exe/js.php index 24a2e5a2c..0888fa57f 100644 --- a/lib/exe/js.php +++ b/lib/exe/js.php @@ -179,7 +179,7 @@ function js_load($file){ * @author Andreas Gohr <andi@splitbrain.org> */ function js_cacheok($cache,$files){ - if($_REQUEST['purge']) return false; //support purge request + if(isset($_REQUEST['purge'])) return false; //support purge request $ctime = @filemtime($cache); if(!$ctime) return false; //There is no cache |