#252 Solution for #248

Avoinna
ajdunevent haluaa yhdistää 1 committia lähteestä ajdunevent/mysqli_num_rows-NO-BOOL kohteeseen diogo/master
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 3 1
      extlib/MDB2/Driver/mysqli.php

+ 3 - 1
extlib/MDB2/Driver/mysqli.php

@@ -1644,7 +1644,9 @@ class MDB2_BufferedResult_mysqli extends MDB2_Result_mysqli
      */
     function numRows()
     {
-        $rows = @mysqli_num_rows($this->result);
+        if (is_bool($this->result) === false ) {
+                $rows = @mysqli_num_rows($this->result);
+        }
         if (null === $rows) {
             if (false === $this->result) {
                 return $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null,