From: nfreear Date: Fri, 1 Dec 2006 10:20:40 +0000 (+0000) Subject: MDL-7758 "Replace breadcrumb image with THEME->rarrow in unit test reports". X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=702227c91364be39b6161bff68297e3b5a15b5f4;p=moodle.git MDL-7758 "Replace breadcrumb image with THEME->rarrow in unit test reports". --- 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.' '; } /**