tbrehm
2013-03-20 2f0b76a8208032ccd8386eeb32f8e89273753021
Proposed fix for: FS#2781 - Some remote functions returning NULL instead of affected/deleted elements count
1 files modified
4 ■■■■ changed files
interface/lib/classes/db_mysql.inc.php 4 ●●●● patch | view | raw | blame | history
interface/lib/classes/db_mysql.inc.php
@@ -190,11 +190,11 @@
  // returns number of rows returned by the last select query
  public function numRows() {
    return $this->queryId->num_rows;
    return intval($this->queryId->num_rows);
  }
  
  public function affectedRows() {
    return $this->queryId->affected_rows;
    return intval($this->queryId->affected_rows);
  }
  // returns mySQL insert id