From 43dc9446117e16130b08dbe9c2459b913d83141f Mon Sep 17 00:00:00 2001 From: martin Date: Thu, 26 Sep 2002 03:36:16 +0000 Subject: [PATCH] Make $a bold so it's easier to see --- admin/lang.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/admin/lang.php b/admin/lang.php index a52f188e03..6ae7107369 100644 --- a/admin/lang.php +++ b/admin/lang.php @@ -179,11 +179,14 @@ echo ""; foreach ($enstring as $key => $envalue) { $envalue = nl2br(htmlentities($envalue)); + $envalue = str_replace("\$a","\$a", $envalue); // Make variables bold + // TODO: It would be nice if all the $a->something variables were bold too + echo ""; echo ""; echo ""; - $value = str_replace("\\","",$string[$key]); // Delete all slashes + $value = str_replace("\\","",$string[$key]); // Delete all slashes $value = htmlentities($value); if ($editable) { echo "
cellheading\" NOWRAP VALIGN=TOP>$keycellheading\" VALIGN=TOP>$envalue"; -- 2.39.5