mirror of
https://github.com/vrana/adminer.git
synced 2025-08-11 17:14:07 +02:00
Trim trailing whitespace
This commit is contained in:
@@ -20,7 +20,7 @@ if (isset($_GET["firebird"])) {
|
||||
;
|
||||
|
||||
function connect($server, $username, $password) {
|
||||
$this->_link = ibase_connect($server, $username, $password);
|
||||
$this->_link = ibase_connect($server, $username, $password);
|
||||
if ($this->_link) {
|
||||
$url_parts = explode(':', $server);
|
||||
$this->service_link = ibase_service_attach($url_parts[0], $username, $password);
|
||||
@@ -109,9 +109,9 @@ if (isset($_GET["firebird"])) {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
class Min_Driver extends Min_SQL {
|
||||
}
|
||||
|
||||
@@ -140,7 +140,7 @@ if (isset($_GET["firebird"])) {
|
||||
}
|
||||
|
||||
function limit($query, $where, $limit, $offset = 0, $separator = " ") {
|
||||
$return = '';
|
||||
$return = '';
|
||||
$return .= ($limit !== null ? $separator . "FIRST $limit" . ($offset ? " SKIP $offset" : "") : "");
|
||||
$return .= " $query$where";
|
||||
return $return;
|
||||
@@ -171,7 +171,7 @@ if (isset($_GET["firebird"])) {
|
||||
while ($row = ibase_fetch_assoc($result)) {
|
||||
$return[$row['RDB$RELATION_NAME']] = 'table';
|
||||
}
|
||||
ksort($return);
|
||||
ksort($return);
|
||||
return $return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user