To fix the issue I have modified
function _rate_expiration_filter_widgets($item) {
return isset($item->expiration_allow_override);
}
to
function _rate_expiration_filter_widgets($item) {
return ($item->expiration_allow_override == 1);
}
To fix the issue I have modified
function _rate_expiration_filter_widgets($item) {
return isset($item->expiration_allow_override);
}
to
function _rate_expiration_filter_widgets($item) {
return ($item->expiration_allow_override == 1);
}
Comments
Comment #1
bertboerland commentedthanks for reporting and the code, we wil look in to this.
Comment #2
mauritsl commentedCommited to CVS. Thanks!
A new development snapshot will be available within the next 12 hours. This improvement will be available in the next official release.
Comment #3
mauritsl commentedRemoving tag, "AllowOveride" is an Apache directive, has nothing to do with this.