Created
April 27, 2016 18:28
-
-
Save alexweber/366333cf7fd94d1f823ee774f83c085d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From e954bc23404f8eb5db37ae8acbed8ca7a16f358b Mon Sep 17 00:00:00 2001 | |
From: Alex Weber <[email protected]> | |
Date: Wed, 27 Apr 2016 15:06:41 -0300 | |
Subject: [PATCH] fix call-time pass by reference error | |
--- | |
.../modules/vrweb/vrfusion_grouping/views/views_plugin_pager_groups.inc | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/sites/all/modules/vrweb/vrfusion_grouping/views/views_plugin_pager_groups.inc b/sites/all/modules/vrweb/vrfusion_grouping/views/views_plugin_pager_groups.inc | |
index 336ed6c051cd..1a6e9555aa0a 100644 | |
--- a/sites/all/modules/vrweb/vrfusion_grouping/views/views_plugin_pager_groups.inc | |
+++ b/sites/all/modules/vrweb/vrfusion_grouping/views/views_plugin_pager_groups.inc | |
@@ -29,7 +29,7 @@ class views_plugin_pager_groups extends views_plugin_pager_full { | |
* @return type | |
*/ | |
function options_validate(&$form, &$form_state) { | |
- return parent::options_validate(&$form, &$form_state); | |
+ return parent::options_validate($form, $form_state); | |
} | |
/** | |
-- | |
2.6.4 (Apple Git-63) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment