]> git.mjollnir.org Git - moodle.git/commitdiff
(prev. wiki fix) Fixed broken constant defines
authorsam_marshall <sam_marshall>
Mon, 25 Sep 2006 17:47:35 +0000 (17:47 +0000)
committersam_marshall <sam_marshall>
Mon, 25 Sep 2006 17:47:35 +0000 (17:47 +0000)
mod/wiki/lib.php

index 384091f96734ca3054a8560b1c4ab3a8dd948920..98b327e494bcca297d21e37e8d62d9d1d5c24caa 100644 (file)
@@ -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 *****