From 50e4a15e6e0532c86ff05dc3950598196ed08d57 Mon Sep 17 00:00:00 2001 From: moodler Date: Mon, 31 May 2004 05:21:58 +0000 Subject: [PATCH] Replace -> with >> in the navigation ... this will be replaced in the new template scheme for a more dynamic template that you pass an array to, so this is really just a reminder for later. --- lib/weblib.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/weblib.php b/lib/weblib.php index 9ba848eb77..f2ae1ec146 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -1096,7 +1096,8 @@ function print_navigation ($navigation) { if (! $site = get_site()) { $site->shortname = get_string("home");; } - echo "framename}\" href=\"$CFG->wwwroot/\">$site->shortname -> $navigation"; + $navigation = str_replace('->', '»', $navigation); + echo "framename}\" href=\"$CFG->wwwroot/\">$site->shortname » $navigation"; } } -- 2.39.5