[Linpha-cvs] SF.net SVN: linpha: [4859] trunk/linpha2/install/step8_testing.php
Status: Inactive
Brought to you by:
bzrudi
From: <bz...@us...> - 2008-02-11 16:30:40
|
Revision: 4859 http://linpha.svn.sourceforge.net/linpha/?rev=4859&view=rev Author: bzrudi Date: 2008-02-11 08:30:34 -0800 (Mon, 11 Feb 2008) Log Message: ----------- fix for broken "select" testing Modified Paths: -------------- trunk/linpha2/install/step8_testing.php Modified: trunk/linpha2/install/step8_testing.php =================================================================== --- trunk/linpha2/install/step8_testing.php 2008-02-07 23:24:36 UTC (rev 4858) +++ trunk/linpha2/install/step8_testing.php 2008-02-11 16:30:34 UTC (rev 4859) @@ -244,8 +244,8 @@ $error = false; if($key == "SELECT") { - $data = $result->FetchRow(ADODB_FETCH_NUM); - if( !$data OR @$data[1] != md5('the life ist beautiful')) + $data = $result->FetchRow(); + if( !$data OR @$data['md5sum'] != md5('the life ist beautiful')) { $error = true; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |