From: <gem...@li...> - 2013-03-14 10:43:18
|
Revision: 1180 http://sourceforge.net/p/gemstracker/code/1180 Author: matijsdejong Date: 2013-03-14 10:43:13 +0000 (Thu, 14 Mar 2013) Log Message: ----------- Fix for incorrect array display in project.ini Modified Paths: -------------- trunk/library/classes/MUtil/Html/TableElement.php Modified: trunk/library/classes/MUtil/Html/TableElement.php =================================================================== --- trunk/library/classes/MUtil/Html/TableElement.php 2013-03-14 08:54:48 UTC (rev 1179) +++ trunk/library/classes/MUtil/Html/TableElement.php 2013-03-14 10:43:13 UTC (rev 1180) @@ -428,7 +428,7 @@ // Check all items foreach ($data as $row) { - if (count($row) !== $count) { + if (is_array($row) || (count($row) !== $count)) { $nested = false; break; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |