My task content type does not have the category, status, and priority fields in it. I'm not sure how to fix this...
The stormattribute.install file looks correct to me:
$attributes['Task category'] = array(
'bug' => 'bug',
'feature request' => 'feature request',
'support' => 'support',
'task' => 'task'
);
$attributes['Task priority'] = array(
'1-low' => 'low',
'2-normal' => 'normal',
'3-high' => 'high',
'4-urgent' => 'urgent'
);
$attributes['Task priority search'] = array(
'1-low' => 'low',
'2-normal' => 'normal',
'3-high' => 'high',
'4-urgent' => 'urgent'
);
$attributes['Ticket status'] = array(
'inserted' => 'inserted',
'in progress' => 'in progress',
'on hold' => 'on hold',
'completed' => 'completed'
);
$attributes['Ticket status search'] = array(
'inserted,in progress,on hold' => 'open',
'inserted' => '-- inserted',
'in progress' => '-- in progress',
'on hold' => '-- on hold',
'completed' => 'completed'
);
Comments
Comment #1
Roberto Gerola commentedYes, I've seen.
I'll fix this too by tomorrow.
Roberto
Comment #2
Roberto Gerola commentedFixed in 6.1.16 release.
Thanks