diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-03-11 21:01:48 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-03-11 21:01:48 +0100 |
commit | ee4c4a1b5a5840c1b9d2d8c74b3f4298dd52928b (patch) | |
tree | ec7011afc97d0159819e8b334709fe0680cab9b1 /conf/dokuwiki.php | |
parent | 6d8affe6a4c62d13d1cd6051c23ab305145f9db6 (diff) | |
download | rpg-ee4c4a1b5a5840c1b9d2d8c74b3f4298dd52928b.tar.gz rpg-ee4c4a1b5a5840c1b9d2d8c74b3f4298dd52928b.tar.bz2 |
Automatic draft saving
DokuWiki now automatically creates a draft file of the currently edited
page. In case of an editing interuption (eg. Browsercrash) the draftfile
can be continued later.
darcs-hash:20060311200148-7ad00-919337a51e001136178d175a1755cd26122e9726.gz
Diffstat (limited to 'conf/dokuwiki.php')
-rw-r--r-- | conf/dokuwiki.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php index 539da08e8..411d2be7d 100644 --- a/conf/dokuwiki.php +++ b/conf/dokuwiki.php @@ -65,6 +65,7 @@ $conf['profileconfirm'] = '1'; //Require current password to confirm c /* Advanced Options */ $conf['userewrite'] = 0; //this makes nice URLs: 0: off 1: .htaccess 2: internal $conf['useslash'] = 0; //use slash instead of colon? only when rewrite is on +$conf['usedraft'] = 1; //automatically save a draft while editing (0|1) $conf['sepchar'] = '_'; //word separator character in page names; may be a // letter, a digit, '_', '-', or '.'. $conf['canonical'] = 0; //Should all URLs use full canonical http://... style? |