Skip to content

Commit

Permalink
Merge branch 'MDL-29523-master' of git://github.com/danpoltawski/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Feb 27, 2012
2 parents 5dad459 + 1ab8cd2 commit ec19566
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/form/filemanager.php
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ function form_filemanager_render($options) {

$maxsize = get_string('maxfilesize', 'moodle', display_size(get_max_upload_file_size($CFG->maxbytes, $course_maxbytes, $options->maxbytes)));
$strdndenabled = get_string('dndenabled_insentence', 'moodle').$OUTPUT->help_icon('dndenabled');
$loading = get_string('loading', 'repository');
$html .= <<<FMHTML
<div class="filemanager-loading mdl-align" id='filemanager-loading-{$client_id}'>
$icon_progress
Expand All @@ -393,7 +394,7 @@ function form_filemanager_render($options) {
</div>
<div class="filemanager-container" id="filemanager-{$client_id}" style="position: relative" >
<ul id="draftfiles-{$client_id}" class="fm-filelist">
<li>Loading...</li>
<li>{$loading}</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit ec19566

Please sign in to comment.