[Phphtmllib-devel] SF.net SVN: phphtmllib:[3568] branches/BRANCH_2_X/phphtmllib/form/ form_elements
Status: Beta
Brought to you by:
hemna
From: <mpw...@us...> - 2012-09-03 13:47:49
|
Revision: 3568 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3568&view=rev Author: mpwalsh8 Date: 2012-09-03 13:47:40 +0000 (Mon, 03 Sep 2012) Log Message: ----------- Updated PHP5.3 compatible constructor to play nice with PHP5.2.x. Modified Paths: -------------- branches/BRANCH_2_X/phphtmllib/form/form_elements/FEListBox.inc Modified: branches/BRANCH_2_X/phphtmllib/form/form_elements/FEListBox.inc =================================================================== --- branches/BRANCH_2_X/phphtmllib/form/form_elements/FEListBox.inc 2012-09-03 13:47:13 UTC (rev 3567) +++ branches/BRANCH_2_X/phphtmllib/form/form_elements/FEListBox.inc 2012-09-03 13:47:40 UTC (rev 3568) @@ -68,7 +68,8 @@ * @param array of Constructor Arguments */ function FEListBox() { - call_user_func_array('parent::FEDataList', func_get_args()) ; + $args = func_get_args() ; + call_user_func_array(array('FEDataList', 'FEDataList'), $args) ; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |