aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
Commit message (Collapse)AuthorAgeFilesLines
* Merge PR #743 branch 'develop-olympus' into developOleg Pudeyev2012-05-211-1/+3
|\ | | | | | | | | * develop-olympus: [ticket/10094] Purge acm_file cache before phpBB installation.
| * Merge PR #743 branch 'bantu/ticket/10094' into develop-olympusOleg Pudeyev2012-05-211-1/+3
| |\ | | | | | | | | | | | | * bantu/ticket/10094: [ticket/10094] Purge acm_file cache before phpBB installation.
| | * [ticket/10094] Purge acm_file cache before phpBB installation.Andreas Fischer2012-04-131-1/+3
| | | | | | | | | | | | PHPBB3-10094
* | | Merge branch 'develop-olympus' into developAndreas Fischer2012-05-141-0/+38
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10605] Use database updater function _sql() instead of $db->sql_query() [ticket/10605] Put end of array on its own line because start of array is too. [ticket/10605] Add parameter documentation to phpbb_delete_user_pms [ticket/10605] Fix left join usage. [ticket/10605] Add a section for updating from 3.0.10 to schema updates. [ticket/10605] Fix syntax error in database updater. [ticket/10605] Reset user´s pm count to 0 when deleting his PMs [ticket/10605] Split query to be able to use indexes [ticket/10605] Rename $delete_rows to $delete_ids. [ticket/10605] Break long comment into multiple lines 80 chars short. [ticket/10605] Remove unnecessary $delete_ids array. [ticket/10605] Remove unnecessary array_keys calls on $delete_rows. [ticket/10605] Remove unused variable declarations. [ticket/10605] Turn $undelivered_user into a real array of counters. [ticket/10605] Use unset() instead of checking user_id over and over again. [ticket/10605] Prefix function with phpbb_ and use true instead of 1 [ticket/10605] Delete orphan private messages on update [ticket/10605] Check for orphan privmsgs when deleting a user
| * | Merge branch 'ticket/10605' into develop-olympusAndreas Fischer2012-05-141-1/+39
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ticket/10605: [ticket/10605] Use database updater function _sql() instead of $db->sql_query() [ticket/10605] Put end of array on its own line because start of array is too. [ticket/10605] Add parameter documentation to phpbb_delete_user_pms [ticket/10605] Fix left join usage. [ticket/10605] Add a section for updating from 3.0.10 to schema updates. [ticket/10605] Fix syntax error in database updater. [ticket/10605] Reset user´s pm count to 0 when deleting his PMs [ticket/10605] Split query to be able to use indexes [ticket/10605] Rename $delete_rows to $delete_ids. [ticket/10605] Break long comment into multiple lines 80 chars short. [ticket/10605] Remove unnecessary $delete_ids array. [ticket/10605] Remove unnecessary array_keys calls on $delete_rows. [ticket/10605] Remove unused variable declarations. [ticket/10605] Turn $undelivered_user into a real array of counters. [ticket/10605] Use unset() instead of checking user_id over and over again. [ticket/10605] Prefix function with phpbb_ and use true instead of 1 [ticket/10605] Delete orphan private messages on update [ticket/10605] Check for orphan privmsgs when deleting a user Conflicts: phpBB/install/database_update.php
| | * | [ticket/10605] Use database updater function _sql() instead of $db->sql_query()Andreas Fischer2012-05-141-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10605
| | * | [ticket/10605] Put end of array on its own line because start of array is too.Andreas Fischer2012-05-141-1/+2
| | | | | | | | | | | | | | | | PHPBB3-10605
| | * | [ticket/10605] Fix left join usage.Oleg Pudeyev2012-04-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously this produced broken SQL: SELECT p.msg_id FROM phpbb_privmsgs p LEFT JOIN 0 phpbb_privmsgs_to ON (p.msg_id = t.msg_id) WHERE t.user_id IS NULL LIMIT 500 OFFSET 0 PHPBB3-10605
| | * | [ticket/10605] Add a section for updating from 3.0.10 to schema updates.Oleg Pudeyev2012-04-051-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Without it data updates do not appear to be run. PHPBB3-10605
| | * | [ticket/10605] Fix syntax error in database updater.Oleg Pudeyev2012-04-051-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10605
| | * | [ticket/10605] Delete orphan private messages on updateJoas Schilling2012-02-271-0/+42
| | | | | | | | | | | | | | | | PHPBB3-10605
* | | | [ticket/10818] Global Announcements Update Dialog should call exit_handler()Joas Schilling2012-05-021-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10818
* | | | Merge PR #771 branch 'develop-olympus' into developOleg Pudeyev2012-04-262-2/+18
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10836] Check if avatar directory is writable after install [ticket/10836] Enable avatars by default at install
| * | | [ticket/10836] Check if avatar directory is writable after installgalaxyAbstractor2012-04-251-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Check if the avatar directory is writeable after the installation is complete. If it isn't, disable avatars and avatar uploading by default. PHPBB3-10836
| * | | [ticket/10836] Enable avatars by default at installgalaxyAbstractor2012-04-211-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Enables avatars and local avatar upload by default. PHPBB3-10836
| * | | [ticket/10492] Separate config generation from the installerPatrick Webster2012-04-201-27/+1
| | | | | | | | | | | | | | | | PHPBB3-10492
* | | | Merge branch 'develop-olympus' into developNils Adermann2012-04-201-1/+1
|\ \ \ \ | |/ / / | | | | | | | | | | | | * develop-olympus: [ticket/10815] enables feed feature by default for a fresh install
| * | | Merge remote-tracking branch 'github-dhruv/ticket/10815' into develop-olympusNils Adermann2012-04-201-1/+1
| |\ \ \ | | | | | | | | | | | | | | | | | | | | * github-dhruv/ticket/10815: [ticket/10815] enables feed feature by default for a fresh install
| | * | | [ticket/10815] enables feed feature by default for a fresh installDhruv Goel2012-04-201-1/+1
| | |/ / | | | | | | | | | | | | PHPBB3-10815
* | | | Merge branch 'develop-olympus' into developAndreas Fischer2012-04-201-16/+19
|\ \ \ \ | |/ / / | | | | | | | | | | | | * develop-olympus: [ticket/10812] Disabled register_globals check in PHP 5.4
| * | | [ticket/10812] Disabled register_globals check in PHP 5.4galaxyAbstractor2012-04-201-16/+19
| | |/ | |/| | | | | | | | | | | | | Disabled the check for register_globals if PHP version is 5.4+ PHPBB3-10812
* | | Merge PR #734 branch 'shibulijack/ticket/10688' into developOleg Pudeyev2012-04-191-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * shibulijack/ticket/10688: [ticket/10688] Update install.html for 3.1 and current practices. [ticket/10688] Update readme for 3.1 and current practices. [ticket/10688] Changed version 3.0 to 3.1 [ticket/10688] Updated version to 3.1 [ticket/10688] Changed 3.0 to 3.1 in docs Conflicts: phpBB/docs/INSTALL.html phpBB/docs/README.html
| * | | [ticket/10688] Updated version to 3.1Shibu Lijack2012-04-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Replace phpBB 3.0.x to phpBB 3.1.x PHPBB-10688
* | | | [ticket/10813] Installer now checks json extensionriadhchtara2012-04-191-1/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Installer now checks json extension and cannot continue without it. Changes are made in phpBB/install/install_install.php where the checking for json is added and to phpBB/language/en/install.php where 2 new keys for the messages that would be displayed are also added. PHPBB3-10813
* | | | Merge PR #761 branch 'naderman/ticket/10756' into developOleg Pudeyev2012-04-181-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * naderman/ticket/10756: [ticket/10756] Fixing variable declarations in style and template classes [ticket/10756] Renaming phpbb_style_template to phpbb_template [ticket/10756] Removing path provider from template class [ticket/10756] Creating locator interface [ticket/10756] Renaming template classes [ticket/10756] Moving template classes
| * | | | [ticket/10756] Renaming phpbb_style_template to phpbb_templateVjacheslav Trushkin2012-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Renaming phpbb_style_template to phpbb_template PHPBB3-10756
| * | | | [ticket/10756] Removing path provider from template classVjacheslav Trushkin2012-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing path provider from template class because it is not used by template class PHPBB3-10756
* | | | | [ticket/10759] Make sure style ids are integersNils Adermann2012-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-10759
* | | | | [ticket/10759] Don't select imageset_id, it's not neededNils Adermann2012-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-10759
* | | | | [ticket/10759] Clarify comments a bitNils Adermann2012-04-191-3/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-10759
* | | | | [ticket/10759] Retrieve style_id after INSERT since we cannot set itNils Adermann2012-04-191-2/+9
| | | | | | | | | | | | | | | | | | | | PHPBB3-10759
* | | | | [ticket/10759] Fix whitespace in database_update.phpNils Adermann2012-04-191-4/+4
| | | | | | | | | | | | | | | | | | | | PHPBB3-10759
* | | | | [ticket/10759] Fixing style in database updaterVjacheslav Trushkin2012-04-191-28/+127
|/ / / / | | | | | | | | | | | | | | | | | | | | Fixing error in database updater caused by style components merge PHPBB3-10759
* | | | Merge remote-tracking branch 'github-callumacrae/ticket/10783' into developNils Adermann2012-04-131-0/+11
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * github-callumacrae/ticket/10783: [ticket/10783] Added assets_version to ACP and simple_*.html. [ticket/10783] Added assets_version to subsilver2. [ticket/10783] Added ?assets_version to assets.
| * | | | [ticket/10783] Added ?assets_version to assets.Callum Macrae2012-04-111-0/+11
| | | | | | | | | | | | | | | | | | | | PHPBB3-10783
* | | | | Merge remote-tracking branch 'github-cyberalien/ticket/10754' into developNils Adermann2012-04-092-4/+4
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | * github-cyberalien/ticket/10754: [ticket/10754] Changing $style to $phpbb_style
| * | | | [ticket/10754] Changing $style to $phpbb_styleVjacheslav Trushkin2012-04-032-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Renaming global variable $style to $phpbb_style PHPBB3-10754
* | | | | Merge branch 'develop-olympus' into developAndreas Fischer2012-04-081-0/+28
|\ \ \ \ \ | | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10561] Removed extra tabs, changes made to $db->sql_query() [ticket/10561] Changed $temp_style_id to $style_id [ticket/10561] Added function desc for phpbb_style_is_active() [ticket/10561] Casted $config['default_style'] to int [ticket/10561] Reverted to phpbb_style_is_active() [ticket/10561] Added to database_update:database_update_info() [ticket/10561] Added section in database_update.php [ticket/10561] Moved and renamed the funtion validate_style(). [ticket/10561] Fixed syntax error and renamed return variables. [ticket/10561] Changes made to $db->sql_fetchrow(). [ticket/10561] Changes made to function phpbb_style_is_active(). [ticket/10561] All users can choose deactivated styles (fixed). Conflicts: phpBB/install/database_update.php
| * | | | [ticket/10561] Removed extra tabs, changes made to $db->sql_query()Hari Sankar R2012-04-091-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Substituted $db->sql_query() with _sql() PHPBB3-10561
| * | | | [ticket/10561] Changed $temp_style_id to $style_idHari Sankar R2012-04-091-2/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-10561
| * | | | [ticket/10561] Casted $config['default_style'] to intHari Sankar R2012-04-091-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-10561
| * | | | [ticket/10561] Reverted to phpbb_style_is_active()Hari Sankar R2012-04-071-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes made to function name, reverted to old. PHPBB3-10561
| * | | | [ticket/10561] Added to database_update:database_update_info()Hari Sankar R2012-04-071-18/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updates made to database_update.php PHPBB3-10561
| * | | | [ticket/10561] Added section in database_update.phpHari Sankar R2012-04-061-0/+18
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | Added section to check for existing users using a deactivated style, and revert it to default style. PHPBB3-10561
* | | | [ticket/10547] User is not logged in as admin after installationGabriel Anca2012-04-041-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | After installing, when user clicks Login button (final installation step), he is not logged in because there's a missing var ($data) PHPBB3-10547
* | | | [ticket/10650] Revert merge of 'rahulr92/ticket/10650' into developOleg Pudeyev2012-04-048-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pull request (#654) was merged a little too quickly. In particular, display_last_subject per-forum option needs consensus. This reverts commit b1fb34a4d7e446768b9f66ba6dd359173cd2a5fb, reversing changes made to 7d6b289671c51694f17dd5f9849abf2534b55e59. PHPBB3-10650
* | | | [ticket/10650] Added static sql filesRahul2012-04-057-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Ran create_schema_files.php and added the generated static sql files to the commit. PHPBB3-10650
* | | | [ticket/10650] Displaying last topic on forum listRahul2012-04-051-0/+3
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | The most recent topic title of the forum can now be displayed on the board index. An option is provided in the ACP under the 'General Forum Setting' which allows the admin to enable or disable this feature. PHPBB3-10650
* | | Merge remote-tracking branch 'github-igorw/feature/class-prefix' into developNils Adermann2012-03-312-7/+3
|\ \ \ | | | | | | | | | | | | | | | | | | | | * github-igorw/feature/class-prefix: [feature/class-prefix] Rename auth => phpbb_auth [feature/class-prefix] Rename user and session to phpbb_*
| * | | [feature/class-prefix] Rename auth => phpbb_authIgor Wiedler2012-03-312-3/+1
| | | | | | | | | | | | | | | | PHPBB3-10609