From 4fa458baf39a58a5ba30d9db77630e61d03c7947 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 25 Mar 2003 00:19:58 +0000 Subject: [PATCH] Changed attachment upload path var to "non-dynamic" ... couldn't see a reason as to why it needed to be dynamic, if it must feel free to change it back. git-svn-id: file:///svn/phpbb/trunk@3713 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_basic.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/install/schemas/mysql_basic.sql b/phpBB/install/schemas/mysql_basic.sql index c76239cf17..c07427681b 100644 --- a/phpBB/install/schemas/mysql_basic.sql +++ b/phpBB/install/schemas/mysql_basic.sql @@ -86,7 +86,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('lastread', '432000 INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_filesize', '262144'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('attachment_quota', '52428800'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments', '3'); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_dir', 'files', 1); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_dir', 'files'); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_users', '0', 1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_date', '0', 1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_id', '2', 1);