From 702227c91364be39b6161bff68297e3b5a15b5f4 Mon Sep 17 00:00:00 2001 From: nfreear Date: Fri, 1 Dec 2006 10:20:40 +0000 Subject: [PATCH] MDL-7758 "Replace breadcrumb image with THEME->rarrow in unit test reports". --- admin/report/simpletest/ex_reporter.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/admin/report/simpletest/ex_reporter.php b/admin/report/simpletest/ex_reporter.php index 26092bb953..4b1b2022f8 100644 --- a/admin/report/simpletest/ex_reporter.php +++ b/admin/report/simpletest/ex_reporter.php @@ -38,14 +38,15 @@ class ExHtmlReporter extends HtmlReporter { * @param bool $showpasses Whether this reporter should output anything for passes. */ function ExHtmlReporter($showpasses) { - global $CFG; + global $CFG, $THEME; $this->HtmlReporter(); $this->showpasses = $showpasses; $this->strrunonlyfolder = $this->get_string('runonlyfolder'); $this->strrunonlyfile = $this->get_string('runonlyfile'); - $this->strseparator = ' '; + check_theme_arrows(); + $this->strseparator = ' '.$THEME->rarrow.' '; } /** -- 2.39.5