MDL-7758 "Replace breadcrumb image with THEME->rarrow in unit test reports".

This commit is contained in:
nfreear 2006-12-01 10:20:40 +00:00
parent 808c2a69fe
commit 702227c913

View File

@ -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 = ' <img src="' . $CFG->pixpath . '/a/r_breadcrumb.gif" class="resize" alt="" /> ';
check_theme_arrows();
$this->strseparator = ' <span class="sep">'.$THEME->rarrow.'</span> ';
}
/**