Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db4ac45
)
MDL-28592 blocks: changing the arguments to moodle_url::out()
author
Ankit Agarwal
<ankit@moodle.com>
Tue, 20 Mar 2012 02:57:12 +0000
(10:57 +0800)
committer
Ankit Agarwal
<ankit@moodle.com>
Tue, 20 Mar 2012 02:57:12 +0000
(10:57 +0800)
comment/lib.php
patch
|
blob
|
blame
|
history
diff --git
a/comment/lib.php
b/comment/lib.php
index
dfb685f
..
d770e16
100644
(file)
--- a/
comment/lib.php
+++ b/
comment/lib.php
@@
-514,7
+514,7
@@
class comment {
$c->format = $u->cformat;
$c->timecreated = $u->ctimecreated;
$url = new moodle_url('/user/view.php', array('id'=>$u->id, 'course'=>$this->courseid));
- $c->profileurl = $url;
+ $c->profileurl = $url
->out(false)
;
$c->fullname = fullname($u);
$c->time = userdate($c->timecreated, get_string('strftimerecent', 'langconfig'));
$c->content = format_text($c->content, $c->format, $formatoptions);