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:
f89a83b
)
MDL-30738: There was an incorrect parameter in $PAGE->set_url
author
Darko Miletic
<dmiletic@moodlerooms.com>
Wed, 14 Dec 2011 17:38:02 +0000
(14:38 -0300)
committer
Darko Miletic
<dmiletic@moodlerooms.com>
Wed, 14 Dec 2011 17:38:02 +0000
(14:38 -0300)
after swithing courseid to id everything started working as it should.
user/index.php
patch
|
blob
|
blame
|
history
diff --git
a/user/index.php
b/user/index.php
index
972364d
..
8991d8f
100644
(file)
--- a/
user/index.php
+++ b/
user/index.php
@@
-31,7
+31,7
@@
'search' => $search,
'roleid' => $roleid,
'contextid' => $contextid,
- '
course
id' => $courseid));
+ 'id' => $courseid));
if ($contextid) {
$context = get_context_instance_by_id($contextid, MUST_EXIST);