1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-13 01:54:00 +02:00

Translation

Added translation for "access denied"
This commit is contained in:
Andrea
2020-02-19 10:21:21 +01:00
committed by GitHub
parent eea1bce828
commit 59b6efac9f

View File

@@ -18,7 +18,7 @@ class AdminerDisableTables {
]; ];
$select = filter_input(INPUT_GET, 'table', FILTER_SANITIZE_STRING); $select = filter_input(INPUT_GET, 'table', FILTER_SANITIZE_STRING);
if(isset($select) && $disabledTables[$select]) die('Access Denied.'); if(isset($select) && $disabledTables[$select]) die(h('Access Denied.'));
if($disabledTables[$tableStatus['Name']]){ if($disabledTables[$tableStatus['Name']]){
return false; return false;