aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/10906] Add setting for last post topic title in schema_data.sqlDavid King2012-05-221-0/+1
| | | | PHPBB3-10906
* Merge PR #721 branch 'rahulr92/ticket/10650' into developOleg Pudeyev2012-05-216-2/+19
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * rahulr92/ticket/10650: [ticket/10650] Subject is cleared if no permissions exist [ticket/10650] Changed apostrophe to utf8 single quote [ticket/10650] Moving censoring to before truncation [ticket/10650] Added apostrophe in explanation in language file [ticket/10650] Inserted correct utf ELLIPSIS character [ticket/10650] Added space after if and comment [ticket/10650] Added ellipsis to language file [ticket/10650] Added href title to subject link [ticket/10650] Made use of truncate_string() function [ticket/10650] Removed changes from acp_forums.php [ticket/10650]Removed incorrect newline [ticket/10650] Changed acp option from per forum to global [ticket/10650] Added checking for empty subjects [ticket/10650] Corrected intendation [ticket/10650]Added permission checking and utf8 functions [ticket/10650] Cropped subject and inserted newline [ticket/10650] Corrected space before true [ticket/10650] Changed language files and forumlist [ticket/10650] Added static sql files [ticket/10650] Displaying last topic on forum list Conflicts: phpBB/install/database_update.php phpBB/language/en/common.php
| * [ticket/10650] Subject is cleared if no permissions existRahul R2012-05-191-2/+2
| | | | | | | | | | | | | | The subject line will be cleared before passing to the template in case the user doesn't have sufficient permissions. PHPBB3-10650
| * [ticket/10650] Changed apostrophe to utf8 single quoteRahul R2012-04-111-1/+1
| | | | | | | | | | | | | | The apostrophe in language entry DISPLAY_LAST_SUBJECT_EXPLAIN was changed to utf8 single quote character. PHPBB3-10650
| * [ticket/10650] Moving censoring to before truncationRahul R2012-04-101-2/+2
| | | | | | | | | | | | | | The censor_text function is now being applied to the last_post_subject before being truncated. PHPBB3-10650
| * [ticket/10650] Added apostrophe in explanation in language fileRahul R2012-04-091-1/+1
| | | | | | | | | | | | | | A missing apostrophe was added to the language file entry of DISPLAY_LAST_SUBJECT_EXPLAIN PHPBB3-10650
| * [ticket/10650] Inserted correct utf ELLIPSIS characterRahul R2012-04-091-1/+1
| | | | | | | | | | | | Inserted the correct utf-8 ellipsis to the language file. PHPBB3-10650
| * [ticket/10650] Added space after if and commentRahul R2012-04-092-4/+4
| | | | | | | | | | | | | | Added space in proper places in database_update.php. Also corrected language entry of ELLIPSIS to utf8 PHPBB3-10650
| * [ticket/10650] Added ellipsis to language fileRahul R2012-04-083-2/+3
| | | | | | | | | | | | | | Added ELLIPSIS to language file common.php and also corrected language explanation of ACP option. PHPBB3-10650
| * [ticket/10650] Added href title to subject linkRahul R2012-04-081-1/+1
| | | | | | | | | | | | | | | | | | Added title attribute to anchor tag which displays last_post_subject so that the full subject can be seen by hovering over the truncated subject displayed in forumlist. PHPBB3-10650
| * [ticket/10650] Made use of truncate_string() functionRahul R2012-04-082-6/+3
| | | | | | | | | | | | | | | | Removed manual cropping and used truncate_string function. Also made a new variable so that is preserved. PHPBB3-10650
| * [ticket/10650] Removed changes from acp_forums.phpRahul R2012-04-081-4/+0
| | | | | | | | | | | | Removed unneccesary changes from acp_forums.php PHPBB3-10650
| * [ticket/10650]Removed incorrect newlineRahul R2012-04-081-1/+0
| | | | | | | | | | | | Deleted additional line in the end of database_update.php PHPBB3-10650
| * [ticket/10650] Changed acp option from per forum to globalRahul R2012-04-0815-20/+12
| | | | | | | | | | | | | | | | | | Changed the display last subject acp toggle option from per forum to global. Modified associated database entries. New option is available in ACP General->Board Features. Also corrected <br /> in forumlist_body.html. PHPBB3-10650
| * [ticket/10650] Added checking for empty subjectsRahul R2012-04-081-1/+1
| | | | | | | | | | | | | | Now empty subjects will not be displayed in a new line on the forum list. PHPBB3-10650
| * [ticket/10650] Corrected intendationRahul R2012-04-081-4/+4
| | | | | | | | | | | | Corrected the intendation of if condition. PHPBB3-10650
| * [ticket/10650]Added permission checking and utf8 functionsRahul R2012-04-081-4/+4
| | | | | | | | | | | | | | | | Passworded forums and ones in which user doesn't have read access will be excluded. Also uft8 based string functions and html encode/decode functions have been used to sanitise subject. PHPBB3-10650
| * [ticket/10650] Cropped subject and inserted newlineRahul R2012-04-082-1/+6
| | | | | | | | | | | | | | | | The subject being displayed in the forum list have been shortened to 30 characters. Also it is now being shown in a separate line. PHPBB3-10650
| * [ticket/10650] Corrected space before trueRahul2012-04-081-1/+1
| | | | | | | | | | | | | | Inserted a space before 'true' as per coding guidelines. PHPBB3-10650
| * [ticket/10650] Changed language files and forumlistRahul2012-04-082-3/+4
| | | | | | | | | | | | | | | | The entry in languages have been changed from title to subject. Also the IF condition in forumlist_body.html has been properly intented. PHPBB3-10650
| * [ticket/10650] Added static sql filesRahul2012-04-087-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-087-1/+20
| | | | | | | | | | | | | | | | | | 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 PR #813 branch 'develop-olympus' into developOleg Pudeyev2012-05-211-1/+5
|\ \ | | | | | | | | | | | | * develop-olympus: [ticket/10401] Return correct type when ldap_bind() fails in ldap_login().
| * \ Merge PR #813 branch 'bantu/ticket/10401' into develop-olympusOleg Pudeyev2012-05-211-1/+5
| |\ \ | | | | | | | | | | | | | | | | * bantu/ticket/10401: [ticket/10401] Return correct type when ldap_bind() fails in ldap_login().
| | * | [ticket/10401] Return correct type when ldap_bind() fails in ldap_login().Andreas Fischer2012-05-221-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | ldap_login() is supposed to return an array. PHPBB3-10401
* | | | Merge PR #812 branch 'develop-olympus' into developOleg Pudeyev2012-05-211-4/+7
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10565] Add line breaks to query in order to follow coding guidelines. [ticket/10565] update_forum_tracking_info(): Remove unnecessary GROUP BY clause
| * | | Merge PR #812 branch 'bantu/ticket/10565' into develop-olympusOleg Pudeyev2012-05-211-4/+7
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | * bantu/ticket/10565: [ticket/10565] Add line breaks to query in order to follow coding guidelines. [ticket/10565] update_forum_tracking_info(): Remove unnecessary GROUP BY clause
| | * | | [ticket/10565] Add line breaks to query in order to follow coding guidelines.Andreas Fischer2012-05-221-3/+7
| | | | | | | | | | | | | | | | | | | | PHPBB3-10565
| | * | | [ticket/10565] update_forum_tracking_info(): Remove unnecessary GROUP BY clauseAndreas Fischer2012-05-221-2/+1
| | |/ / | | | | | | | | | | | | PHPBB3-10565
* | | | Merge PR #808 branch 'develop-olympus' into developOleg Pudeyev2012-05-211-2/+0
|\ \ \ \ | |/ / / | | | | | | | | | | | | * develop-olympus: [ticket/10898] Do not write ?> into config.php to avoid whitespace output.
| * | | Merge PR #808 branch 'bantu/ticket/10898' into develop-olympusOleg Pudeyev2012-05-211-2/+0
| |\ \ \ | | | | | | | | | | | | | | | | | | | | * bantu/ticket/10898: [ticket/10898] Do not write ?> into config.php to avoid whitespace output.
| | * | | [ticket/10898] Do not write ?> into config.php to avoid whitespace output.Andreas Fischer2012-05-181-2/+0
| | |/ / | | | | | | | | | | | | PHPBB3-10898
* | | | 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-143-54/+202
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-143-55/+203
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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] Add parameter documentation to phpbb_delete_user_pmsJoas Schilling2012-04-131-0/+4
| | | | | | | | | | | | | | | | | | | | 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] Reset user´s pm count to 0 when deleting his PMsJoas Schilling2012-03-271-1/+11
| | | | | | | | | | | | | | | | | | | | PHPBB3-10605
| | * | | [ticket/10605] Split query to be able to use indexesJoas Schilling2012-03-271-3/+31
| | | | | | | | | | | | | | | | | | | | PHPBB3-10605
| | * | | [ticket/10605] Rename $delete_rows to $delete_ids.Andreas Fischer2012-03-271-9/+9
| | | | | | | | | | | | | | | | | | | | PHPBB3-10605
| | * | | [ticket/10605] Break long comment into multiple lines 80 chars short.Andreas Fischer2012-03-271-1/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-10605
| | * | | [ticket/10605] Remove unnecessary $delete_ids array.Andreas Fischer2012-03-271-5/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-10605
| | * | | [ticket/10605] Remove unnecessary array_keys calls on $delete_rows.Andreas Fischer2012-03-271-3/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-10605
| | * | | [ticket/10605] Remove unused variable declarations.Andreas Fischer2012-03-271-1/+0
| | | | | | | | | | | | | | | | | | | | PHPBB3-10605