From 64d8ac24a66a508cf03f006945c8261f7f1fdcb8 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sat, 16 Apr 2011 11:22:14 +0000 Subject: [PATCH] Fix $row = $row = $.... and unused variable from r85885 --- includes/installer/Ibm_db2Installer.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; } -- 2.20.1