Ticket #287 (closed defect: fixed)

Opened 7 months ago

Last modified 7 months ago

$CFG->disable_usertemplates default code defect

Reported by: pilgrimbill Assigned to: nobody
Priority: normal Milestone: 0.9.1
Component: core Version: 0.9.0
Severity: normal Keywords:
Cc: Patch Included: 1
Review Stage: accepted

Description

in lib/setup.php line 65, the code to set the default $CFG->disable_usertemplates is wrong:

WRONG CODE:

if (empty($CFG->disable_templatechanging)) {

$CFG->disable_usertemplates = false;

}

SHOULD BE:

if (empty($CFG->disable_usertemplates)) {

$CFG->disable_usertemplates = false;

}

Change History

01/29/08 17:15:19 changed by ewout

  • status changed from new to closed.
  • resolution set to fixed.
  • review_stage changed from unreviewed to accepted.

Fixed in r1533. Thank you!