~ubuntu-branches/ubuntu/trusty/moodle/trusty-proposed

« back to all changes in this revision

Viewing changes to course/moodleform_mod.php

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2013-09-09 15:22:35 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20130909152235-d9njbvgugzm380an
Tags: 2.5.2-1
* New upstream version: 2.5.2.
  - Incorporates S3 security patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
811
811
        $mform = $this->_form;
812
812
        $label = is_null($customlabel) ? get_string('moduleintro') : $customlabel;
813
813
 
814
 
        $mform->addElement('editor', 'introeditor', $label, array('rows' => 3), array('maxfiles' => EDITOR_UNLIMITED_FILES,
 
814
        $mform->addElement('editor', 'introeditor', $label, array('rows' => 10), array('maxfiles' => EDITOR_UNLIMITED_FILES,
815
815
            'noclean' => true, 'context' => $this->context, 'collapsed' => true));
816
816
        $mform->setType('introeditor', PARAM_RAW); // no XSS prevention here, users must be trusted
817
817
        if ($required) {