From a4856975fac5a3f6ccc3394e350894a0d2962dd3 Mon Sep 17 00:00:00 2001 From: gbateson Date: Sat, 12 Jul 2008 22:59:45 +0000 Subject: [PATCH] MDL-14279 fixed typo in get_baseurl: get_file_url($this->filedir.'/') should be get_file_url($this->filedir).'/' --- mod/hotpot/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/hotpot/lib.php b/mod/hotpot/lib.php index c7b8cbe051..fc3c578083 100644 --- a/mod/hotpot/lib.php +++ b/mod/hotpot/lib.php @@ -1804,7 +1804,7 @@ class hotpot_xml_quiz extends hotpot_xml_tree { if (!isset($this->baseurl)) { global $CFG; require_once($CFG->libdir.'/filelib.php'); - $this->baseurl = get_file_url($this->filedir .'/'); + $this->baseurl = get_file_url($this->filedir).'/'; } return $this->baseurl; } -- 2.39.5