From: martin Date: Thu, 26 Sep 2002 03:36:16 +0000 (+0000) Subject: Make $a bold so it's easier to see X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=43dc9446117e16130b08dbe9c2459b913d83141f;p=moodle.git Make $a bold so it's easier to see --- 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";