Commits
Thomas Tornevall authored b3ba7e8bc51
Fix #20
if (!is_admin() && Data::isEnabled()) {
should be
if (!is_admin() && !Data::isEnabled()) {
Added extra errorhandler to ajaxify so that we can take care of isolated problems.
RWC-223Fix #20
if (!is_admin() && Data::isEnabled()) {
should be
if (!is_admin() && !Data::isEnabled()) {
Added extra errorhandler to ajaxify so that we can take care of isolated problems.
RWC-223