diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2007-06-07 17:41:42 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2007-06-07 17:41:42 +0000 |
commit | cf7a17218392fc4bc2fd2ea7580b419d8fcdf1c7 (patch) | |
tree | ef01e5db267bc5189eca28c3651f70d08287006f /phpBB/install | |
parent | dd9c236e6a47fb93d2f39f746f2bac5efc62066d (diff) | |
download | forums-cf7a17218392fc4bc2fd2ea7580b419d8fcdf1c7.tar forums-cf7a17218392fc4bc2fd2ea7580b419d8fcdf1c7.tar.gz forums-cf7a17218392fc4bc2fd2ea7580b419d8fcdf1c7.tar.bz2 forums-cf7a17218392fc4bc2fd2ea7580b419d8fcdf1c7.tar.xz forums-cf7a17218392fc4bc2fd2ea7580b419d8fcdf1c7.zip |
Adding a little more exlanation about flash.
Enabling FLASH per default while leaving the default permissions to disable it.
There might be no mods and admins visible one a board
#12185
git-svn-id: file:///svn/phpbb/trunk@7722 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 2 | ||||
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index ea8f7be1d9..24e2d8d4c0 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -615,7 +615,7 @@ if (version_compare($current_version, '3.0.RC1', '<=')) _sql($sql, $errored, $error_ary); set_config('jab_use_ssl', '0'); - set_config('allow_post_flash', '0'); + set_config('allow_post_flash', '1'); $no_updates = false; } diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index 1001116f0d..5615273e10 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -20,7 +20,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_name_chars', INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_namechange', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_nocensors', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_pm_attach', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_flash', '0'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_flash', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_links', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_privmsg', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig', '1'); |