|
From: <rgr...@us...> - 2013-12-28 20:02:08
|
Revision: 12248
http://sourceforge.net/p/xoops/svn/12248
Author: rgriffith
Date: 2013-12-28 20:02:03 +0000 (Sat, 28 Dec 2013)
Log Message:
-----------
Issue #1281 - initialize arrays as empty arrays rather than null.
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/htdocs/class/xoopsform/grouppermform.php
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/class/xoopsform/grouppermform.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/class/xoopsform/grouppermform.php 2013-12-28 18:37:59 UTC (rev 12247)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/class/xoopsform/grouppermform.php 2013-12-28 20:02:03 UTC (rev 12248)
@@ -42,7 +42,7 @@
*
* @var array
*/
- var $_itemTree;
+ var $_itemTree = array();
/**
* Name of permission
*
@@ -198,7 +198,7 @@
*
* @var array
*/
- var $_optionTree;
+ var $_optionTree = array();
/**
* Constructor
|