summaryrefslogtreecommitdiff
path: root/doku.php
diff options
context:
space:
mode:
authorandi <andi@splitbrain.org>2005-01-14 22:05:06 +0100
committerandi <andi@splitbrain.org>2005-01-14 22:05:06 +0100
commit4721e2ca370de4063159bbd3e8b2cd25928e81fa (patch)
treecd7d433788b94e245f72a3edeabe36a92fdee680 /doku.php
parentf11c233fb55043866bc976a324fd2d1ecc72a962 (diff)
downloadrpg-4721e2ca370de4063159bbd3e8b2cd25928e81fa.tar.gz
rpg-4721e2ca370de4063159bbd3e8b2cd25928e81fa.tar.bz2
fix for bug #4
darcs-hash:20050114210506-9977f-b34047f7f7ff63f9c33c54bcd25a6d37211ec80f.gz
Diffstat (limited to 'doku.php')
-rw-r--r--doku.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/doku.php b/doku.php
index a62ff85f7..50f033c9b 100644
--- a/doku.php
+++ b/doku.php
@@ -6,7 +6,7 @@
* @author Andreas Gohr <andi@splitbrain.org>
*/
- define('DOKUWIKIVERSION','2004-01-13');
+ define('DOKUWIKIVERSION','2004-01-14');
ini_set('short_open_tag',"1");
require_once("conf/dokuwiki.php");
@@ -87,7 +87,7 @@
$INFO = pageinfo();
//Editing: check if locked by anyone - if not lock for my self
- if(($ACT == 'edit' || $ACT == $lang['btn_preview'])){# && $INFO['editable']){
+ if(($ACT == 'edit' || $ACT == $lang['btn_preview']) && $INFO['editable']){
$lockedby = checklock($ID);
if($lockedby){
$ACT = 'locked';