projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90e1b82
)
MDL-14279 fixed typo in get_baseurl: get_file_url($this->filedir.'/') should be get_f...
author
gbateson
<gbateson>
Sat, 12 Jul 2008 22:59:45 +0000
(22:59 +0000)
committer
gbateson
<gbateson>
Sat, 12 Jul 2008 22:59:45 +0000
(22:59 +0000)
mod/hotpot/lib.php
patch
|
blob
|
history
diff --git
a/mod/hotpot/lib.php
b/mod/hotpot/lib.php
index c7b8cbe0510ec2b55889260b4601492463aa99b2..fc3c57808394a26931ad5436790673453eca4ca5 100644
(file)
--- 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;
}