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:
c4a12af
)
MDL-31651 course/info: Fix hardcoded string
author
Dan Poltawski
<dan@moodle.com>
Thu, 23 Feb 2012 07:52:21 +0000
(15:52 +0800)
committer
Eloy Lafuente (stronk7)
<stronk7@moodle.org>
Mon, 27 Feb 2012 14:32:55 +0000
(15:32 +0100)
course/info.php
patch
|
blob
|
blame
|
history
diff --git
a/course/info.php
b/course/info.php
index
aca5105
..
4da6eb3
100644
(file)
--- a/
course/info.php
+++ b/
course/info.php
@@
-37,7
+37,7
@@
$PAGE->set_pagelayout('popup');
$PAGE->set_url('/course/info.php', array('id' => $course->id));
$PAGE->set_title(get_string("summaryof", "", $course->fullname));
- $PAGE->set_heading(
'Course info'
);
+ $PAGE->set_heading(
get_string('courseinfo')
);
$PAGE->set_course($course);
$PAGE->navbar->add(get_string('summary'));