From: sam_marshall Date: Mon, 25 Sep 2006 17:47:35 +0000 (+0000) Subject: (prev. wiki fix) Fixed broken constant defines X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=5cee80e1837b2eb064413e8c7bb16729e038c7a6;p=moodle.git (prev. wiki fix) Fixed broken constant defines --- diff --git a/mod/wiki/lib.php b/mod/wiki/lib.php index 384091f967..98b327e494 100644 --- a/mod/wiki/lib.php +++ b/mod/wiki/lib.php @@ -12,10 +12,10 @@ $WIKI_TYPES = array ('teacher' => get_string('defaultcourseteacher'), define("EWIKI_ESCAPE_AT", 0); # For the algebraic filter // How long locks stay around without being confirmed (seconds) -define(WIKI_LOCK_PERSISTENCE,60); +define("WIKI_LOCK_PERSISTENCE",60); // How often to confirm that you still want a lock -define(WIKI_LOCK_RECONFIRM,30); +define("WIKI_LOCK_RECONFIRM",30); /*** Moodle 1.7 compatibility functions *****