Skip to content

Commit

Permalink
Blog: View my participation in My participation summary show error co…
Browse files Browse the repository at this point in the history
…de lines #165262
  • Loading branch information
anthonyforth authored and sammarshallou committed Nov 17, 2016
1 parent b822a0d commit 1ba2d15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions lang/en/ouwiki.php
Expand Up @@ -242,6 +242,7 @@
$string['format_rtf']='Download in word processor format';
$string['format_template']='Download as wiki template file';
$string['savedat']='Saved at {$a}';
$string['downloadcsv'] = 'Comma separated values text file';

$string['feedtitle']='{$a->course} wiki: {$a->name} - {$a->subtitle}';
$string['feeddescriptionchanges']='Lists all changes made to the wiki. Subscribe to this feed if you want to be updated whenever the wiki changes.';
Expand Down
4 changes: 2 additions & 2 deletions participation_table.php
Expand Up @@ -134,7 +134,7 @@ public function setup($download = '') {
* Overriding here to avoid downloading in unsupported formats
*/
public function get_download_menu() {
$exportclasses = array('csv' => get_string('downloadcsv', 'table'));
$exportclasses = array('csv' => get_string('downloadcsv', 'ouwiki'));
return $exportclasses;
}

Expand Down Expand Up @@ -297,7 +297,7 @@ public function setup($download = '') {
* Overriding here to avoid downloading in unsupported formats
*/
public function get_download_menu() {
$exportclasses = array('csv' => get_string('downloadcsv', 'table'));
$exportclasses = array('csv' => get_string('downloadcsv', 'ouwiki'));
return $exportclasses;
}

Expand Down

0 comments on commit 1ba2d15

Please sign in to comment.