mirror of
https://github.com/vrana/adminer.git
synced 2025-08-16 11:34:10 +02:00
Fix saving NULL value
This reverts commit ed130065
.
Conflicts:
adminer/drivers/mongo.inc.php
adminer/include/functions.inc.php
This commit is contained in:
@@ -10,14 +10,6 @@
|
||||
$this->_conn = $connection;
|
||||
}
|
||||
|
||||
/** Quote a SQL string or null value
|
||||
* @param string
|
||||
* @return string
|
||||
*/
|
||||
function quote($value) {
|
||||
return ($value === null ? "NULL" : $this->_conn->quote($value));
|
||||
}
|
||||
|
||||
/** Select data from table
|
||||
* @param string
|
||||
* @param array result of $adminer->selectColumnsProcess()[0]
|
||||
|
Reference in New Issue
Block a user