From e814507c78c69cdb4a976d048629f00da77660a7 Mon Sep 17 00:00:00 2001 From: Lucas D Hedding Date: Fri, 7 Jun 2013 07:35:31 -0500 Subject: [PATCH] Issue #2003550 by ThijsFeryn: Rename Views method op_helper() to opHelper(). --- .../views/lib/Drupal/views/Plugin/views/filter/ManyToOne.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/ManyToOne.php b/core/modules/views/lib/Drupal/views/Plugin/views/filter/ManyToOne.php index 23bca59..797df56 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/filter/ManyToOne.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/filter/ManyToOne.php @@ -65,7 +65,7 @@ function operators() { 'title' => t('Is one of'), 'short' => t('or'), 'short_single' => t('='), - 'method' => 'op_helper', + 'method' => 'opHelper', 'values' => 1, 'ensure_my_table' => 'helper', ), @@ -73,7 +73,7 @@ function operators() { 'title' => t('Is all of'), 'short' => t('and'), 'short_single' => t('='), - 'method' => 'op_helper', + 'method' => 'opHelper', 'values' => 1, 'ensure_my_table' => 'helper', ), @@ -81,7 +81,7 @@ function operators() { 'title' => t('Is none of'), 'short' => t('not'), 'short_single' => t('<>'), - 'method' => 'op_helper', + 'method' => 'opHelper', 'values' => 1, 'ensure_my_table' => 'helper', ), @@ -130,7 +130,7 @@ public function ensureMyTable() { return parent::ensureMyTable(); } - function op_helper() { + protected function opHelper() { if (empty($this->value)) { return; } -- 1.7.10.4