From 8649b504a20119a6347dd9f667a1ff3310e21407 Mon Sep 17 00:00:00 2001 From: Robin Johnson Date: Sun, 6 May 2001 01:15:56 +0000 Subject: [PATCH] Trailing slash on help path bug fixed. --- ChangeLog | 1 + config.inc.php3 | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0a4283cb9..15eb99e49 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,7 @@ $Source$ * Table Maintence Features added in tbl_properties.php3 * Fixed create table "default" bug. * Language tags for Table Types & Table Maintance + * Trailing slash on help path bug 2001-05-04 Loïc Chapeaux * grab_globals.inc.php3 handles now the $HTTP_POST_FILES array diff --git a/config.inc.php3 b/config.inc.php3 index 6a3360490..1b5ee64b3 100755 --- a/config.inc.php3 +++ b/config.inc.php3 @@ -47,7 +47,8 @@ $cfgServerDefault = 1; // Default server (0 = no def $cfgServer = ''; unset($cfgServers[0]); -$cfgManualBase = "http://www.mysql.com/documentation/mysql/bychapter/"; +// Be sure to include no trailing slash on the path +$cfgManualBase = "http://www.mysql.com/documentation/mysql/bychapter"; $cfgConfirm = true; $cfgPersistentConnections = false;