Merge branch 'MDL-29129-master' of https://github.com/mackensen/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2012-08-07 23:58:27 +02:00
commit 80913617e8
2 changed files with 2 additions and 1 deletions

View File

@ -169,6 +169,7 @@ $string['pageindex_help'] = 'This wiki\'s page tree';
$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';

View File

@ -2483,7 +2483,7 @@ class page_wiki_admin extends page_wiki {
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) {