From ff855b9b1963a88ecd5f4715b1805d684e5196c5 Mon Sep 17 00:00:00 2001 From: Jerome Mouneyrac Date: Wed, 20 Feb 2013 11:39:47 +0800 Subject: [PATCH] MDL-38001 rename the download button into install button --- blocks/community/renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocks/community/renderer.php b/blocks/community/renderer.php index 4fb6c508bf03d..dca98393b14fc 100644 --- a/blocks/community/renderer.php +++ b/blocks/community/renderer.php @@ -272,7 +272,7 @@ public function course_list($courses, $huburl, $contextcourseid) { 'downloadcourseid' => $course->id, 'huburl' => $huburl, 'coursefullname' => $course->fullname, 'backupsize' => $course->backupsize); $downloadurl = new moodle_url("/blocks/community/communitycourse.php", $params); - $downloadbuttonhtml = html_writer::tag('a', get_string('download', 'block_community'), + $downloadbuttonhtml = html_writer::tag('a', get_string('install', 'block_community'), array('href' => $downloadurl, 'class' => 'centeredbutton, hubcoursedownload')); }