Skip to content

Commit

Permalink
MDL-29129 wiki: fix a hardcoded string
Browse files Browse the repository at this point in the history
  • Loading branch information
mackensen committed Aug 2, 2012
1 parent 470d47f commit 9ff5e86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions mod/wiki/lang/en/wiki.php
Expand Up @@ -169,6 +169,7 @@
$string['pageislocked'] = 'Someone is editing this page right now. Try to edit it in a few minutes.';
$string['pagelist'] = 'Page list';
$string['pagelist_help'] = 'Page list categorized by alphabetical order';
$string['pagename'] = 'Page name';
$string['peerreview'] = 'Peer review';
$string['pluginadministration'] = 'Wiki administration';
$string['pluginname'] = 'Wiki';
Expand Down
2 changes: 1 addition & 1 deletion mod/wiki/pagelib.php
Expand Up @@ -2483,7 +2483,7 @@ protected function create_navbar() {
protected function print_delete_content($showorphan = true) {
$contents = array();
$table = new html_table();
$table->head = array('','Page name');
$table->head = array('', get_string('pagename','wiki'));
$table->attributes['class'] = 'generaltable mdl-align';
$swid = $this->subwiki->id;
if ($showorphan) {
Expand Down

0 comments on commit 9ff5e86

Please sign in to comment.