diff options
| author | Nils Adermann <naderman@naderman.de> | 2013-03-27 06:31:53 +0100 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2013-03-27 06:31:53 +0100 |
| commit | b7778f7fdedf39896d54703ce8cae459e94fe8d1 (patch) | |
| tree | c9b8cce3c99479865b5a8d40c838fb67dfc024b5 /phpBB | |
| parent | c9aa39be5de14ff50c27cd5246b85844855da844 (diff) | |
| parent | d3decaeedff926f2945285b713e85c09c3de9daf (diff) | |
| download | forums-b7778f7fdedf39896d54703ce8cae459e94fe8d1.tar forums-b7778f7fdedf39896d54703ce8cae459e94fe8d1.tar.gz forums-b7778f7fdedf39896d54703ce8cae459e94fe8d1.tar.bz2 forums-b7778f7fdedf39896d54703ce8cae459e94fe8d1.tar.xz forums-b7778f7fdedf39896d54703ce8cae459e94fe8d1.zip | |
Merge remote-tracking branch 'github-bantu/ticket/11460' into develop
* github-bantu/ticket/11460:
[ticket/11460] Add default behaviour tests for notification and email types.
[ticket/11460] Configure functional test board email using dummy SMTP data.
[ticket/11460] Add test for whether post_email and topic_email are checked.
[ticket/11460] Add methods for checkbox handling to phpbb_functional_test_case.
[ticket/11460] Drop incorrect phpbb_notification_{type,method}_ prefix.
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/install/schemas/schema_data.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index f118d330ba..c25925a9c8 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -777,9 +777,9 @@ INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'ogg'); INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'ogm'); # User Notification Options (for first user) -INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('phpbb_notification_type_post', 0, 2, ''); -INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('phpbb_notification_type_post', 0, 2, 'phpbb_notification_method_email'); -INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('phpbb_notification_type_topic', 0, 2, ''); -INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('phpbb_notification_type_topic', 0, 2, 'phpbb_notification_method_email'); +INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('post', 0, 2, ''); +INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('post', 0, 2, 'email'); +INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('topic', 0, 2, ''); +INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('topic', 0, 2, 'email'); # POSTGRES COMMIT # |
