Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Trivial
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.4.6
-
Fix Version/s: 4.4.7
-
Component/s: None
-
Labels:None
Description
I guess I took the habit of using "drush cvapi system.flush" so much, that I had not realized a bug in "drush cc civicrm": the API call it is doing does not specify the API version, so it fails.
// Flush all caches using the API
- $params = array();
+ $params = array(
+ 'version' => 3,
+ );
will PR.