Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

[FIX] Error screen format and Search results per page wouldn't get saved

The plugin has a bug that prevents the "Error screen format" and "Search results per page" from working.

Line 42 of file views/settings is incorrect:

echo $this->Form->DropDown('Garden.Errors.MasterView', array('10', '15', '25', '50', '100')); ?></li>

It should be:

echo $this->Form->DropDown('Garden.Search.PerPage', array('10', '15', '25', '50', '100')); ?></li>

As it has been mentioned already, to make the plugin work in the latest Vanilla it is necessary to substitute all occurrences of &$Sender with $Sender (removing the "&" sign).

The attached file includes all fixes.

PS: Nobody seemed to mind those two options not working for over 4 years.

Sign In or Register to comment.