From: Sam Reed Date: Sat, 16 Apr 2011 11:22:14 +0000 (+0000) Subject: Fix $row = $row = $.... and unused variable from r85885 X-Git-Tag: 1.31.0-rc.0~30790 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=64d8ac24a66a508cf03f006945c8261f7f1fdcb8;p=lhc%2Fweb%2Fwiklou.git Fix $row = $row = $.... and unused variable from r85885 --- diff --git a/includes/installer/Ibm_db2Installer.php b/includes/installer/Ibm_db2Installer.php index d2f916faea..0e2477352a 100644 --- a/includes/installer/Ibm_db2Installer.php +++ b/includes/installer/Ibm_db2Installer.php @@ -214,8 +214,7 @@ class Ibm_db2Installer extends DatabaseInstaller { $status->fatal( 'config-connection-error', '' ); } else { - $nRows = $this->db->numRows( $result ); - while ( $row = $row = $this->db->fetchRow( $result ) ) { + while ( $row = $this->db->fetchRow( $result ) ) { if( $row[0] >= 32768 ) { return $status; }