mirror of
https://github.com/vrana/adminer.git
synced 2025-08-08 23:57:29 +02:00
Make select(..., , , ) optional
This commit is contained in:
@@ -41,7 +41,7 @@ if ($_GET["val"] && is_ajax()) {
|
||||
$as = convert_field($fields[key($row)]);
|
||||
$select = array($as ? $as : idf_escape(key($row)));
|
||||
$where[] = where_check($unique_idf, $fields);
|
||||
$return = $driver->select($TABLE, $select, $where, $select, array(), 1, 0);
|
||||
$return = $driver->select($TABLE, $select, $where, $select);
|
||||
if ($return) {
|
||||
echo reset($return->fetch_row());
|
||||
}
|
||||
|
Reference in New Issue
Block a user