Issue #2003242 by farfanfelipe, Dan Reinders, marlatt: Rename Views method sort_validate() to sortValidate().

8.0.x
Alex Pott 2013-06-11 12:38:07 +01:00
parent 6feb68f120
commit f8b6ec887f
1 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ abstract class SortPluginBase extends HandlerBase {
* Simple validate handler
*/
public function validateOptionsForm(&$form, &$form_state) {
$this->sort_validate($form, $form_state);
$this->sortValidate($form, $form_state);
if (!empty($this->options['exposed'])) {
$this->validateExposeForm($form, $form_state);
}
@ -171,7 +171,7 @@ abstract class SortPluginBase extends HandlerBase {
}
}
function sort_validate(&$form, &$form_state) { }
protected function sortValidate(&$form, &$form_state) { }
public function sortSubmit(&$form, &$form_state) { }