[Phphtmllib-devel] SF.net SVN: phphtmllib:[3565] branches/BRANCH_2_X/phphtmllib/widgets/ data_list/
Status: Beta
Brought to you by:
hemna
From: <mpw...@us...> - 2012-08-28 18:48:05
|
Revision: 3565 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3565&view=rev Author: mpwalsh8 Date: 2012-08-28 18:47:59 +0000 (Tue, 28 Aug 2012) Log Message: ----------- Added missing child constructor which broke the constructor chain in early PHP 5.3.x builds. Modified Paths: -------------- branches/BRANCH_2_X/phphtmllib/widgets/data_list/DefaultGUIDataList.inc Modified: branches/BRANCH_2_X/phphtmllib/widgets/data_list/DefaultGUIDataList.inc =================================================================== --- branches/BRANCH_2_X/phphtmllib/widgets/data_list/DefaultGUIDataList.inc 2012-08-28 18:47:32 UTC (rev 3564) +++ branches/BRANCH_2_X/phphtmllib/widgets/data_list/DefaultGUIDataList.inc 2012-08-28 18:47:59 UTC (rev 3565) @@ -1309,7 +1309,15 @@ return $js; } - + /** + * Constructor - needed for early PHP 5.3.x compatibility + * + * @param Parent Constructor + * @param array of Constructor Arguments + */ + function DefaultGUIDataList() { + call_user_func_array('parent::DataList', func_get_args()) ; + } } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |