From aabfe164c1267fde16959de813dbd5c6611b873f Mon Sep 17 00:00:00 2001 From: tokul Date: Sat, 22 Jul 2006 17:28:53 +0000 Subject: [PATCH] data and attachment directories need trailing slash. If we don't require it, code that uses $data_dir or $attachment_dir will need extra checks git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11425 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- config/config_default.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config_default.php b/config/config_default.php index 91532256..a5aaed21 100644 --- a/config/config_default.php +++ b/config/config_default.php @@ -474,7 +474,7 @@ $noselect_fix_enable = false; * * @global string $data_dir */ -$data_dir = '/var/local/squirrelmail/data'; +$data_dir = '/var/local/squirrelmail/data/'; /** * Attachments directory @@ -493,7 +493,7 @@ $data_dir = '/var/local/squirrelmail/data'; * + It should probably be another directory than data_dir. * @global string $attachment_dir */ -$attachment_dir = '/var/local/squirrelmail/attach'; +$attachment_dir = '/var/local/squirrelmail/attach/'; /** * Hash level used for data directory. -- 2.25.1