Skip to content

Commit

Permalink
fix [warning] apcu_clear_cache() expects exactly 0 parameters, 1 given (
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-slasher13 authored and damiankloip committed Nov 22, 2016
1 parent 7bfbdae commit e1572ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/core/cache.drush.inc
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ function drush_cache_rebuild() {
'wincache_ucache_clear',
'xcache_clear_cache',
];
array_walk(array_filter($user_caches, 'is_callable'), 'call_user_func');
array_map('call_user_func', array_filter($user_caches, 'is_callable'));

$autoloader = drush_drupal_load_autoloader(DRUPAL_ROOT);
require_once DRUSH_DRUPAL_CORE . '/includes/utility.inc';
Expand Down

0 comments on commit e1572ae

Please sign in to comment.