#156426 by GreenMother: fix wrong datatype warning for parsed JS files

6.x
Gábor Hojtsy 2007-07-03 16:22:58 +00:00
parent b6c069ad7d
commit 7aa0b54b78
1 changed files with 1 additions and 1 deletions

View File

@ -2080,7 +2080,7 @@ function _packer_backreferences($match, $offset, $data) {
*/ */
function drupal_clear_js_cache() { function drupal_clear_js_cache() {
file_scan_directory(file_create_path('js'), '.*', array('.', '..', 'CVS'), 'file_delete', TRUE); file_scan_directory(file_create_path('js'), '.*', array('.', '..', 'CVS'), 'file_delete', TRUE);
variable_set('javascript_parsed', ''); variable_set('javascript_parsed', array());
} }
/** /**