From c988f54df5c74e02dba05e31b91154a365dcb8ae Mon Sep 17 00:00:00 2001 From: ahollosi Date: Mon, 13 Nov 2000 14:54:08 +0000 Subject: [PATCH] added config options for all mysql table names git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@335 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- lib/config.php | 5 ++++- lib/mysql.php | 51 ++++++++++++++++++++++++++++++-------------------- 2 files changed, 35 insertions(+), 21 deletions(-) diff --git a/lib/config.php b/lib/config.php index a6d642949..81d635840 100644 --- a/lib/config.php +++ b/lib/config.php @@ -6,7 +6,7 @@ if (!function_exists('rcs_id')) { function rcs_id($id) { echo "\n"; }; } - rcs_id('$Id: config.php,v 1.15 2000-11-08 15:40:00 ahollosi Exp $'); + rcs_id('$Id: config.php,v 1.16 2000-11-13 14:54:08 ahollosi Exp $'); // end essential internal stuff @@ -50,6 +50,9 @@ } elseif ($WhichDatabase == 'mysql') { $WikiPageStore = "wiki"; $ArchivePageStore = "archive"; + $WikiLinksStore = "wikilinks"; + $WikiScoreStore = "wikiscore"; + $HitCountStore = "hitcount"; $mysql_server = 'localhost'; $mysql_user = 'root'; $mysql_pwd = ''; diff --git a/lib/mysql.php b/lib/mysql.php index 2494e1742..300639a39 100644 --- a/lib/mysql.php +++ b/lib/mysql.php @@ -1,4 +1,4 @@ -