aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11103] Inject table prefix to notifications system instead of constantsNathaniel Guse2012-11-097-38/+81
| | | | PHPBB3-11103
* [ticket/11103] Comment indentationNathaniel Guse2012-11-091-6/+8
| | | | PHPBB3-11103
* [ticket/11103] count is reserved, do not use in a SQL queryNathaniel Guse2012-11-091-7/+7
| | | | PHPBB3-11103
* [ticket/11103] Use phpBB Container to load types/methodsNathaniel Guse2012-11-0925-75/+505
| | | | PHPBB3-11103
* [ticket/11103] Remove error suppression in test case helpersNathaniel Guse2012-11-061-4/+4
| | | | PHPBB3-11103
* [ticket/11103] enable/disable notifications functionsNathan Guse2012-10-291-0/+32
| | | | | | | | | | | | | | disable_notifications This should be called when an extension which has notification types is disabled so that all those notifications are hidden and do not cause errors enable_notifications This should be called when an extension which has notification types that was disabled is re-enabled so that all those notifications that were hidden are shown again PHPBB3-11103
* [ticket/11103] Make sure post/topic approved notifications are always unreadNathan Guse2012-10-292-0/+40
| | | | PHPBB3-11103
* [ticket/11103] Handle the ext notification type betterNathan Guse2012-10-291-41/+2
| | | | | | | We don't actually need to test the finder here, so don't copy the ext directory over PHPBB3-11103
* [ticket/11103] _get_avatar -> get_user_avatarNathan Guse2012-10-298-8/+8
| | | | PHPBB3-11103
* [ticket/11103] More cleanupNathan Guse2012-10-291-2/+2
| | | | PHPBB3-11103
* [ticket/11103] Revert an overwrite that occured on merging from developNathan Guse2012-10-291-1/+3
| | | | PHPBB3-11103
* [ticket/11103] Code cleanupNathan Guse2012-10-294-64/+2
| | | | PHPBB3-11103
* [ticket/11103] Set basic notifications to be enabled by defaultNathan Guse2012-10-2926-483/+219
| | | | | | | | | | | Now, if there is no row for the user in the user_notifications table, the user will receive basic notifications. If the user wishes to not receive notifications, a row must be added with notify = 0. For other methods besides the basic (e.g. email, jabber) a row must still be added with notify = 1 for them to receive notifications PHPBB3-11103
* [ticket/11103] Working on default notifications on install/updateNathan Guse2012-10-272-1/+115
| | | | PHPBB3-11103
* [ticket/11103] Re-add notify method to the UCP preferencesNathan Guse2012-10-203-0/+27
| | | | | | | I've noticed that this is used in other areas still in phpBB, so it should not be removed. PHPBB3-11103
* [ticket/11103] Correct the test caseNathan Guse2012-10-203-7/+30
| | | | | | Fix a bug that broke it and make sure to set the needed config/auth settings PHPBB3-11103
* [ticket/11103] Correct the comments on the notification classesNathan Guse2012-10-209-18/+18
| | | | PHPBB3-11103
* [ticket/11103] PM notifications are not available if users cannot read themNathan Guse2012-10-201-0/+8
| | | | PHPBB3-11103
* [ticket/11103] Notifications for subscriptions/bookmarks must obey ACP optionsNathan Guse2012-10-204-0/+32
| | | | | | If bookmarks/subscriptions are disabled, they should not be listed in the UCP PHPBB3-11103
* [ticket/11103] Use the full class name as the item_type/methodNathan Guse2012-10-2039-533/+402
| | | | | | This is going to require you recreate the db tables. PHPBB3-11103
* [ticket/11103] Message of no notifications if you have noneNathan Guse2012-10-203-13/+26
| | | | PHPBB3-11103
* [ticket/11103] Do not have empty queue in the interfaceNathan Guse2012-10-201-5/+0
| | | | | | This is not needed as it is not public. PHPBB3-11103
* [ticket/11103] Replace $email_template with get_email_template()Nathan Guse2012-10-2018-99/+163
| | | | PHPBB3-11103
* [ticket/11103] Create common.js for subsilver2, move added JS code thereNathan Guse2012-10-193-19/+20
| | | | PHPBB3-11103
* [ticket/11103] Change is_disabled to is_enabledNathan Guse2012-10-197-19/+19
| | | | | | | | | | | | If you're following along and would like to update your DB, you can run the following queries to do so: ALTER TABLE phpbb_notifications CHANGE `is_disabled` `is_enabled` TINYINT( 1 ) NOT NULL DEFAULT '1'; UPDATE `phpbb_notifications` SET is_enabled = 1; PHPBB3-11103
* [ticket/11103] Brackets on their own linesNathan Guse2012-10-181-9/+27
| | | | PHPBB3-11103
* [ticket/11103] Declare $ for jQuery, check for instance of, newlines at eofNathan Guse2012-10-184-4/+8
| | | | PHPBB3-11103
* [ticket/11103] Interface docblocksNathan Guse2012-10-186-82/+222
| | | | PHPBB3-11103
* [ticket/11103] Expand class vars and use docblocks for phpBB classesNathan Guse2012-10-183-22/+84
| | | | PHPBB3-11103
* [ticket/11103] Remove unnecessary commentsNathan Guse2012-10-189-28/+0
| | | | | | | Comments that are not needed because the actions are completely self-explanatory PHPBB3-11103
* [ticket/11103] Use e.preventDefault();Nathan Guse2012-10-181-2/+2
| | | | PHPBB3-11103
* Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ticket/11103Nathan Guse2012-10-188-28/+139
|\ | | | | | | | | Conflicts: phpBB/includes/functions.php
| * Merge remote-tracking branch 'EXreaction/ticket/8796' into developAndreas Fischer2012-10-184-26/+55
| |\ | | | | | | | | | | | | | | | | | | | | | | | | * EXreaction/ticket/8796: [ticket/8796] Prevent setting post_time greater than time() in markread [ticket/8796] Fix a few issues with the previous commits [ticket/8796] Mark read links updated to include time() in url [ticket/8796] Revert changes to $user->data['lastmark'] [ticket/8796] Make function markread obey the $post_time argument
| | * [ticket/8796] Prevent setting post_time greater than time() in markreadNathan Guse2012-09-301-30/+30
| | | | | | | | | | | | PHPBB3-8796
| | * [ticket/8796] Fix a few issues with the previous commitsNathaniel Guse2012-09-032-5/+5
| | | | | | | | | | | | | | | | | | Fix an SQL error and the redirect url generated PHPBB3-8796
| | * [ticket/8796] Mark read links updated to include time() in urlNathaniel Guse2012-09-033-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Submitting the current time() allows us to mark only the topics and forums read up until a certain time (when the user loaded the page). This means that any new posts or topics posted between when the user opened the page and clicked the link are still shown as unread. PHPBB3-8796
| | * [ticket/8796] Revert changes to $user->data['lastmark']Nathaniel Guse2012-09-031-6/+2
| | | | | | | | | | | | | | | | | | | | | | | | The earlier change might change the way some things work (after looking at viewtopic) and I'd rather not risk introducing new bugs, so I'm going to revert those changes to be safe. PHPBB3-8796
| | * [ticket/8796] Make function markread obey the $post_time argumentNathaniel Guse2012-09-031-19/+52
| | | | | | | | | | | | | | | | | | Also do a little cleanup of the markread function PHPBB3-8796
| * | Merge branch 'develop-olympus' into developAndreas Fischer2012-10-183-1/+80
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10848] Move include up. [ticket/10848] Add phpbb_ prefix. [ticket/10848] Redirect from adm to installer correctly. Conflicts: phpBB/includes/functions.php
| | * \ Merge remote-tracking branch 'p/ticket/10848' into develop-olympusAndreas Fischer2012-10-183-1/+80
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/10848: [ticket/10848] Move include up. [ticket/10848] Add phpbb_ prefix. [ticket/10848] Redirect from adm to installer correctly.
| | | * | [ticket/10848] Move include up.Oleg Pudeyev2012-10-171-1/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-10848
| | | * | [ticket/10848] Add phpbb_ prefix.Oleg Pudeyev2012-10-173-3/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-10848
| | | * | [ticket/10848] Redirect from adm to installer correctly.Oleg Pudeyev2012-10-173-1/+79
| | | | | | | | | | | | | | | | | | | | PHPBB3-10848
| * | | | Merge PR #918 branch 'develop-olympus' into developOleg Pudeyev2012-10-172-1/+3
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | * develop-olympus: [ticket/10568] adding MESSAGE_EDITED to ucp.php and compose_pm
| | * | | Merge PR #918 branch 'Senky/ticket/10568' into develop-olympusOleg Pudeyev2012-10-172-1/+3
| | |\ \ \ | | | |/ / | | |/| | | | | | | | | | | | * Senky/ticket/10568: [ticket/10568] adding MESSAGE_EDITED to ucp.php and compose_pm
| | | * | [ticket/10568] adding MESSAGE_EDITED to ucp.php and compose_pmSenky2012-08-022-1/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-10568
* | | | | Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ticket/11103Nathan Guse2012-10-167-10/+13
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: phpBB/includes/functions_posting.php phpBB/language/en/email/forum_notify.txt phpBB/language/en/email/newtopic_notify.txt phpBB/language/en/email/topic_notify.txt
| * | | | Merge PR #890 branch 'nickvergessen/ticket/10982' into developOleg Pudeyev2012-10-162-5/+5
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/10982: [ticket/10982] Correctly check, whether data-overlay is set [ticket/10982] Remove overlay on first up/down move of forums in ACP [ticket/10982] Allow setting dimming control overlay also as data-overlay
| | * | | | [ticket/10982] Correctly check, whether data-overlay is setJoas Schilling2012-07-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10982
| | * | | | [ticket/10982] Remove overlay on first up/down move of forums in ACPJoas Schilling2012-07-111-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10982