diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-25 00:19:58 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-25 00:19:58 +0000 |
| commit | 4fa458baf39a58a5ba30d9db77630e61d03c7947 (patch) | |
| tree | 8afa09b9dd61175c51732a4c0ca512f4a5345c57 /phpBB | |
| parent | 18294c2230978831241ad6993c5941f13a964af8 (diff) | |
| download | forums-4fa458baf39a58a5ba30d9db77630e61d03c7947.tar forums-4fa458baf39a58a5ba30d9db77630e61d03c7947.tar.gz forums-4fa458baf39a58a5ba30d9db77630e61d03c7947.tar.bz2 forums-4fa458baf39a58a5ba30d9db77630e61d03c7947.tar.xz forums-4fa458baf39a58a5ba30d9db77630e61d03c7947.zip | |
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
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/install/schemas/mysql_basic.sql | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
