From: Steve W. <wai...@us...> - 2001-07-12 03:49:08
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv30533 Modified Files: index.php Log Message: Added a comment regarding the table name prefix as a precaution to admins who set up alpha versions of 1.3. Index: index.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/index.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** index.php 2001/07/12 03:21:35 1.18 --- index.php 2001/07/12 03:49:05 1.19 *************** *** 86,90 **** // Used by all DB types: 'database' => 'wiki', ! 'prefix' => 'phpwiki_', // prefix for filenames or table names // Used by 'dbm', 'dba', 'file' --- 86,96 ---- // Used by all DB types: 'database' => 'wiki', ! // prefix for filenames or table names ! /* ! * currently you MUST EDIT THE SQL file too (in the schemas/ directory ! * because we aren't doing on the fly sql generation during the ! * installation. ! */ ! 'prefix' => 'phpwiki_', // Used by 'dbm', 'dba', 'file' |