mirror of
https://github.com/vrana/adminer.git
synced 2025-08-24 15:12:51 +02:00
Replace isset($var) by $var !== null
This commit is contained in:
@@ -252,7 +252,7 @@ if (isset($_GET["mssql"])) {
|
||||
}
|
||||
|
||||
function limit($query, $where, $limit, $offset = 0, $separator = " ") {
|
||||
return (isset($limit) ? " TOP (" . ($limit + $offset) . ")" : "") . " $query$where"; // seek later
|
||||
return ($limit !== null ? " TOP (" . ($limit + $offset) . ")" : "") . " $query$where"; // seek later
|
||||
}
|
||||
|
||||
function limit1($query, $where) {
|
||||
|
Reference in New Issue
Block a user