From 5cee80e1837b2eb064413e8c7bb16729e038c7a6 Mon Sep 17 00:00:00 2001 From: sam_marshall Date: Mon, 25 Sep 2006 17:47:35 +0000 Subject: [PATCH] (prev. wiki fix) Fixed broken constant defines --- mod/wiki/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ***** -- 2.39.5