Update of /cvsroot/phpwiki/phpwiki/lib In directory usw-pr-cvs1:/tmp/cvs-serv2640/lib Modified Files: dbalib.php dbmlib.php Log Message: Fix typo. Index: dbalib.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/dbalib.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** dbalib.php 2001年02月12日 01:43:10 1.3 --- dbalib.php 2001年02月17日 05:36:21 1.4 *************** *** 42,46 **** 'hitcount' => _dbname('hitcountdb')); ! if (preg_match('@%/tmp\b@', $DBParams['directory'])) $DBWarning = "DBA files are in the /tmp directory."; --- 42,46 ---- 'hitcount' => _dbname('hitcountdb')); ! if (preg_match('@^/tmp\b@', $DBParams['directory'])) $DBWarning = "DBA files are in the /tmp directory."; Index: dbmlib.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/dbmlib.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** dbmlib.php 2001年02月12日 01:43:10 1.8 --- dbmlib.php 2001年02月17日 05:36:21 1.9 *************** *** 37,41 **** 'hitcount' => _dbname('hitcountdb')); ! if (preg_match('@%/tmp\b@', $DBParams['directory'])) $DBWarning = "DBM files are in the /tmp directory."; --- 37,41 ---- 'hitcount' => _dbname('hitcountdb')); ! if (preg_match('@^/tmp\b@', $DBParams['directory'])) $DBWarning = "DBM files are in the /tmp directory.";