From e4b7e97848afacd120d3971dbdaa0038d1bb8bc9 Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Sun, 17 May 2026 00:34:50 +0200 Subject: [PATCH] Revert "Code Review Test: Fix language strings" This reverts commit 257fc2d87c1767c1cb7ca1bbab428db0f8aa570c. --- mysql/mysql-lib.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mysql/mysql-lib.pl b/mysql/mysql-lib.pl index 16f4a90b4..a961ae4aa 100755 --- a/mysql/mysql-lib.pl +++ b/mysql/mysql-lib.pl @@ -671,10 +671,10 @@ else { local $js2 = "onClick='form.db_def[2].checked = true'"; $rv = &ui_radio("db_def", $db eq '%' || $db eq '' ? 1 : $ind ? 2 : 0, - [ [ 1, text{'host_any'} ], - [ 2, text{'host_sel'}." ". + [ [ 1, $text{'host_any'} ], + [ 2, $text{'host_sel'}." ". &ui_select("dbs", $_[0], \@opts, 1, 0, 0, 0,$js1) ], - [ 0, text{'host_otherdb'}." ". + [ 0, $text{'host_otherdb'}." ". &ui_textbox("db", $db eq '%' || $db eq '' || $ind ? '' : $db, 30, 0, undef, $js2) ] ]);