Closed (fixed)
Project:
Cache Actions
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Jul 2011 at 17:48 UTC
Updated:
18 Sep 2011 at 20:41 UTC
Selecting the "Clear a specific cache cid" action, there is no box to specify which CID to clear.
This was working in Beta 2. Compared to the Beta 2 code, it appears the following was changed: in cache_actions.rules.inc, line 34, 'type' is now set to 'value'
array(
//Line 33 starts below...
'cid' => array(
'type' => 'value', //This was set to 'string' in previous version.
'label' => t('Cache cid'),
'description' => t('The cid to clear')
),
)
Changing 'type' back to string appears to fix the problem.
Comments
Comment #1
fabsor commentedYou are very much correct. Fixed here:
http://drupalcode.org/project/cache_actions.git/commitdiff/refs/heads/6....