1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 07:36:44 +02:00

Make root namespace explicit

This commit is contained in:
Jakub Vrana
2025-03-05 14:25:09 +01:00
parent c10b614ee1
commit f468c095ae
5 changed files with 5 additions and 5 deletions

View File

@@ -119,7 +119,7 @@ if (isset($_GET["clickhouse"])) {
function fetch_field() {
$column = $this->_offset++;
$return = new stdClass;
$return = new \stdClass;
if ($column < count($this->columns)) {
$return->name = $this->meta[$column]['name'];
$return->orgname = $return->name;