From c02a7d6abe9216040f9815b4b61e0d24eb5f91f3 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 17 Mar 2025 00:49:12 +0100 Subject: [PATCH] Add missing namespace --- plugins/pretty-json-column.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/pretty-json-column.php b/plugins/pretty-json-column.php index 2a4bc2ee..374fd782 100644 --- a/plugins/pretty-json-column.php +++ b/plugins/pretty-json-column.php @@ -18,7 +18,7 @@ class AdminerPrettyJsonColumn { $json = $this->testJson($value); if ($json !== $value) { $jsonText = json_encode($json, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES); - return "" . h($jsonText) . ""; + return "" . Adminer\h($jsonText) . ""; } return ''; }