MDL-32018 mod_wiki: Fixed up whitespace after peer-review

This commit is contained in:
Sam Hemelryk
2012-03-30 10:21:32 +13:00
parent 2be11d5faf
commit 4b023f2a10
2 changed files with 4 additions and 5 deletions
-1
View File
@@ -78,7 +78,6 @@ if (!empty($swid)) {
$wikipage->set_uid($uid);
}
$wikipage->set_title($title);
// set page action, and initialise moodle form
+4 -4
View File
@@ -41,7 +41,7 @@ class mod_wiki_edit_form extends moodleform {
$mform = $this->_form;
$version = $this->_customdata['version'];
$format = $this->_customdata['format'];
$format = $this->_customdata['format'];
$pagetitle = $this->_customdata['pagetitle'];
if (empty($this->_customdata['contextid'])) {
@@ -50,9 +50,9 @@ class mod_wiki_edit_form extends moodleform {
// after the release of 2.3 (not creating an issue because this whole thing should be reviewed)
debugging('You must always provide mod_wiki_edit_form with a contextid in its custom data', DEBUG_DEVELOPER);
global $PAGE;
$contextid = $PAGE->context->id;
$contextid = $PAGE->context->id;
} else {
$contextid = $this->_customdata['contextid'];
$contextid = $this->_customdata['contextid'];
}
if (isset($this->_customdata['pagetitle'])) {
@@ -100,7 +100,7 @@ class mod_wiki_edit_form extends moodleform {
$mform->setType('contentformat', PARAM_ALPHANUMEXT);
if (!empty($CFG->usetags)) {
$tags = !isset($this->_customdata['tags'])?"":$this->_customdata['tags'];
$tags = !isset($this->_customdata['tags'])?"":$this->_customdata['tags'];
$mform->addElement('header', 'tagshdr', get_string('tags', 'tag'));
$mform->addElement('tags', 'tags', get_string('tags'));
$mform->setDefault('tags', $tags);