diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-04 16:32:35 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-04 16:32:35 +0000 |
commit | 93f8e8c293e39435dd72a4f1ea202ebd36c28ac3 (patch) | |
tree | 608c40f0d646b88769a56af935cbc7afca883e21 | |
parent | af99418ec5a76b466db0a44f75daf51e5a0e497d (diff) | |
download | forums-93f8e8c293e39435dd72a4f1ea202ebd36c28ac3.tar forums-93f8e8c293e39435dd72a4f1ea202ebd36c28ac3.tar.gz forums-93f8e8c293e39435dd72a4f1ea202ebd36c28ac3.tar.bz2 forums-93f8e8c293e39435dd72a4f1ea202ebd36c28ac3.tar.xz forums-93f8e8c293e39435dd72a4f1ea202ebd36c28ac3.zip |
ok... although this may be "bad" for benchmarks as well as those having a medium to heavily sized board and limited server capabilities our main audience seems to be those uninformed and "just" want to run a forum. For those it is way better for them to see their template and style changes immediatlely, else frustration is high. ;) We only enable this for new installations... this should also take away some common support inquiries.
git-svn-id: file:///svn/phpbb/trunk@7834 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index e3256f466c..72818dd09e 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -138,7 +138,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online_guests INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online_time', '5'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_onlinetrack', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_search', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_tplcompile', '0'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_tplcompile', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_user_activity', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments', '3'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments_pm', '1'); |