|
From: Arno H. <aho...@us...> - 2001-01-21 10:59:51
|
Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv21335
Modified Files:
config.php
Log Message:
corrected if-clause for 'dba' and 'default' (pointed out by kc7dx)
Index: config.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/config.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** config.php 2001/01/20 21:52:21 1.21
--- config.php 2001/01/21 11:00:00 1.22
***************
*** 48,52 ****
// DBM and DBA settings (default)
! if ($WhichDatabase == 'dbm' or 'dba' or 'default') {
$DBMdir = "/tmp";
$WikiPageStore = "wiki";
--- 48,53 ----
// DBM and DBA settings (default)
! if ($WhichDatabase == 'dbm' or $WhichDatabase == 'dba' or
! $WhichDatabase == 'default') {
$DBMdir = "/tmp";
$WikiPageStore = "wiki";
|