diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-03 16:22:58 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-03 16:22:58 +0000 |
commit | 7aa0b54b78565a18dd11a04f34824d0909bdab4c (patch) | |
tree | 560370008e758bcd47064d4a9ed0a9faf0a051e2 | |
parent | b6c069ad7d8bbc53a4e10b8a6c71326cab7f284c (diff) | |
download | brdo-7aa0b54b78565a18dd11a04f34824d0909bdab4c.tar.gz brdo-7aa0b54b78565a18dd11a04f34824d0909bdab4c.tar.bz2 |
#156426 by GreenMother: fix wrong datatype warning for parsed JS files
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index c848059f1..04aa00897 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -2080,7 +2080,7 @@ function _packer_backreferences($match, $offset, $data) { */ function drupal_clear_js_cache() { file_scan_directory(file_create_path('js'), '.*', array('.', '..', 'CVS'), 'file_delete', TRUE); - variable_set('javascript_parsed', ''); + variable_set('javascript_parsed', array()); } /** |