NWiki for Moodle 1.6 - created date issue

Re: NWiki for Moodle 1.6 - created date issue

by Geoffrey Rowland -
Number of replies: 0
Picture of Plugin developers
Managed to fix this for NWiki for Moodle 1.6 by the following changes in mod/wiki/locallib.php (backported from NWiki for Moodle 1.7/1.8/1.9)

around line 1470

replace

$data->created = $WS->dfform['created'];

with

$data->created = optional_param('dfformcreated',NULL,PARAM_INT);;

Not a huge issue, but may help others working with NWiki and Moodle 1.6 before the big upgrade to 1.9 wink