From a31f0bcc171cb7e1dfcb46503851c3b602c72725 Mon Sep 17 00:00:00 2001
From: Molot <Molot@1261030.no-reply.drupal.org>
Date: Mon, 15 Apr 2013 09:31:56 +0200
Subject: [PATCH 2/2] http://drupal.org/node/1966328 Fix strict warning

---
 includes/handlers.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/includes/handlers.inc b/includes/handlers.inc
index 0313cdf..6a48689 100644
--- a/includes/handlers.inc
+++ b/includes/handlers.inc
@@ -1655,8 +1655,8 @@ class views_join {
  *   - left_query: The subquery to use in the left side of the join clause.
  */
 class views_join_subquery extends views_join {
-  function construct($table = NULL, $left_table = NULL, $left_field = NULL, $field = NULL, $extra = array(), $type = 'LEFT') {
-    parent::construct($table, $left_table, $left_field, $field, $extra, $type);
+  function construct($table = NULL, $left_table = NULL, $left_field = NULL, $field = NULL, $extra = array(), $type = 'LEFT', $fields = NULL) {
+    parent::construct($table, $left_table, $left_field, $field, $extra, $type,  $fields);
     $this->left_query = $this->definition['left_query'];
   }
 
-- 
1.8.1.msysgit.1

