civicrm-core.git
2 years agoMerge pull request #21921 from eileenmcnaughton/gc
Seamus Lee [Tue, 26 Oct 2021 05:12:46 +0000 (16:12 +1100)]
Merge pull request #21921 from eileenmcnaughton/gc

[NFC] [REF] Test class cleanup

2 years agoMerge pull request #21853 from colemanw/allCoreTables
Eileen McNaughton [Mon, 25 Oct 2021 19:37:41 +0000 (08:37 +1300)]
Merge pull request #21853 from colemanw/allCoreTables

AllCoreTables - Allow virtual entities to share a DAO class

2 years agoMerge pull request #21907 from eileenmcnaughton/tests
demeritcowboy [Mon, 25 Oct 2021 13:53:02 +0000 (09:53 -0400)]
Merge pull request #21907 from eileenmcnaughton/tests

Fix a few more tests to use a more realistic flow

2 years agoMerge pull request #21906 from eileenmcnaughton/cont_test
demeritcowboy [Mon, 25 Oct 2021 13:50:05 +0000 (09:50 -0400)]
Merge pull request #21906 from eileenmcnaughton/cont_test

Fix more tests to use the full form flow

2 years agoAllCoreTables - Allow virtual entities to share a DAO class
Coleman Watts [Mon, 18 Oct 2021 14:54:03 +0000 (10:54 -0400)]
AllCoreTables - Allow virtual entities to share a DAO class

Indexes entities by brief name instead of class name,
which allows one class to be shared by multiple entities.

2 years ago[NFC] [REF] Test class cleanup
Eileen McNaughton [Sun, 24 Oct 2021 23:27:26 +0000 (12:27 +1300)]
[NFC] [REF] Test class cleanup

The driver for this was to remove uses of the DAO->createTestObject methods which were creating
individuals with data invalid for them. However, this is a full 'margin cleanup' and
standardises the test.

I think the whole createTestObject approach is best viewed as an early attempt to get
lots of entities testable quickly but it's overwraught for creating contacts
(and generally a bit flakey)

2 years agoMerge pull request #21920 from colemanw/getInfoItemCache
Eileen McNaughton [Sun, 24 Oct 2021 21:25:20 +0000 (10:25 +1300)]
Merge pull request #21920 from colemanw/getInfoItemCache

APIv4 - Fix performance drag caused by getInfoItem calling the API

2 years agoMerge pull request #21918 from braders/feature/spelling-fixes
Eileen McNaughton [Sun, 24 Oct 2021 02:56:38 +0000 (15:56 +1300)]
Merge pull request #21918 from braders/feature/spelling-fixes

Miscellaneous spelling fixes

2 years agoAPIv4 - Fix performance drag caused by getInfoItem calling the API
Coleman Watts [Sat, 23 Oct 2021 23:27:21 +0000 (19:27 -0400)]
APIv4 - Fix performance drag caused by getInfoItem calling the API

This function is sometimes called thousands of times per request, e.g. for every cell
in a searchKit display table. Going through the API wrapper that many times is a
considerable (+10 sec) drag on performance.
Instead of calling Entity.get, we can just read directly from the cache where it stores its data.

2 years agoMiscellaneous spelling fixes
Bradley Taylor [Sat, 23 Oct 2021 11:09:44 +0000 (12:09 +0100)]
Miscellaneous spelling fixes

2 years agoMerge pull request #21915 from eileenmcnaughton/protext
colemanw [Sat, 23 Oct 2021 19:14:48 +0000 (15:14 -0400)]
Merge pull request #21915 from eileenmcnaughton/protext

[Ref] Make functions private to protect them

2 years agoMerge pull request #21847 from eileenmcnaughton/pledge2
demeritcowboy [Sat, 23 Oct 2021 13:46:43 +0000 (09:46 -0400)]
Merge pull request #21847 from eileenmcnaughton/pledge2

Standardise our 2 pledge templates to use tokens, add tests

2 years ago[Ref] Make functions private to protect them
Eileen McNaughton [Sat, 23 Oct 2021 04:43:59 +0000 (17:43 +1300)]
[Ref] Make functions private to protect them

As we move functions to this class making them private once they are unused outside the class
makes it easier to clean them up

2 years agoSwitch pledge_reminder over to use tokens
Eileen McNaughton [Sat, 16 Oct 2021 23:23:19 +0000 (12:23 +1300)]
Switch pledge_reminder over to use tokens

2 years agoUpdate pledge acknowledgement to use token processor only
Eileen McNaughton [Sat, 16 Oct 2021 22:37:47 +0000 (11:37 +1300)]
Update pledge acknowledgement to use token processor only

2 years agoAdd test for domain, contact tokens in pledge
Eileen McNaughton [Mon, 11 Oct 2021 05:23:27 +0000 (18:23 +1300)]
Add test for domain, contact tokens in pledge

2 years agoMerge pull request #21910 from eileenmcnaughton/new_validate
Eileen McNaughton [Sat, 23 Oct 2021 04:28:43 +0000 (17:28 +1300)]
Merge pull request #21910 from eileenmcnaughton/new_validate

Fix cleanup on test, also NFC cleanup

2 years agoMerge pull request #21692 from demeritcowboy/dbssl
Eileen McNaughton [Sat, 23 Oct 2021 02:36:30 +0000 (15:36 +1300)]
Merge pull request #21692 from demeritcowboy/dbssl

Fix unreplaced template vars in civicrm.settings.php when using legacy installer

2 years agoFix cleanup on test, also NFC cleanup
Eileen McNaughton [Sat, 23 Oct 2021 01:24:22 +0000 (14:24 +1300)]
Fix cleanup on test, also NFC cleanup

This test was not cleaning itself up very well in the tearDown - causing the post test validate to fail

2 years agoMerge pull request #21904 from braders/feature/remove-from-tag-translatable-errors
Eileen McNaughton [Fri, 22 Oct 2021 23:53:54 +0000 (12:53 +1300)]
Merge pull request #21904 from braders/feature/remove-from-tag-translatable-errors

Make error message translatable - remove tag tasks.

2 years agoMerge pull request #21905 from braders/feature/add-to-group-translatable-errors
Eileen McNaughton [Fri, 22 Oct 2021 23:53:18 +0000 (12:53 +1300)]
Merge pull request #21905 from braders/feature/add-to-group-translatable-errors

Make error messages translatable.

2 years agoFix a few more tests to use a more realistic flow
Eileen McNaughton [Fri, 22 Oct 2021 21:54:17 +0000 (10:54 +1300)]
Fix a few more tests to use a more realistic flow

2 years agoFix more tests to use the full form flow
Eileen McNaughton [Fri, 22 Oct 2021 21:28:31 +0000 (10:28 +1300)]
Fix more tests to use the full form flow

2 years agoMake error messages translatable.
Bradley Taylor [Fri, 22 Oct 2021 20:33:11 +0000 (21:33 +0100)]
Make error messages translatable.

2 years agoMerge pull request #21892 from artfulrobot/artfulrobot-order-membership
Eileen McNaughton [Fri, 22 Oct 2021 20:29:07 +0000 (09:29 +1300)]
Merge pull request #21892 from artfulrobot/artfulrobot-order-membership

Improve tests around the Order.create API and membership

2 years agofix unreplaced template vars when using legacy installer
demeritcowboy [Fri, 22 Oct 2021 20:25:59 +0000 (16:25 -0400)]
fix unreplaced template vars when using legacy installer

2 years agoMake error message translatable.
Bradley Taylor [Fri, 22 Oct 2021 20:25:18 +0000 (21:25 +0100)]
Make error message translatable.

Also fix typo (space between 'at least')

2 years agoMerge pull request #21848 from eileenmcnaughton/valid
demeritcowboy [Fri, 22 Oct 2021 15:50:52 +0000 (11:50 -0400)]
Merge pull request #21848 from eileenmcnaughton/valid

Add financial validation check (to the extent we can)

2 years agoMerge pull request #21863 from mariav0/patch-6
demeritcowboy [Fri, 22 Oct 2021 15:04:24 +0000 (11:04 -0400)]
Merge pull request #21863 from mariav0/patch-6

Update contribution_recurring_billing_html.tpl

2 years agoMerge pull request #21850 from mariav0/patch-1
demeritcowboy [Fri, 22 Oct 2021 15:04:04 +0000 (11:04 -0400)]
Merge pull request #21850 from mariav0/patch-1

Update contribution_online_receipt_html.tpl

2 years agoMerge pull request #21888 from mariav0/patch-26
demeritcowboy [Fri, 22 Oct 2021 15:03:37 +0000 (11:03 -0400)]
Merge pull request #21888 from mariav0/patch-26

Update test_preview_html.tpl

2 years agoMerge pull request #21890 from mariav0/patch-28
demeritcowboy [Fri, 22 Oct 2021 15:03:20 +0000 (11:03 -0400)]
Merge pull request #21890 from mariav0/patch-28

Update contribution_invoice_receipt_html.tpl

2 years agoMerge pull request #21889 from mariav0/patch-27
demeritcowboy [Fri, 22 Oct 2021 15:03:07 +0000 (11:03 -0400)]
Merge pull request #21889 from mariav0/patch-27

Update uf_notify_html.tpl

2 years agoMerge pull request #21887 from mariav0/patch-25
demeritcowboy [Fri, 22 Oct 2021 15:02:52 +0000 (11:02 -0400)]
Merge pull request #21887 from mariav0/patch-25

Update pledge_reminder_html.tpl

2 years agoMerge pull request #21886 from mariav0/patch-24
demeritcowboy [Fri, 22 Oct 2021 15:02:40 +0000 (11:02 -0400)]
Merge pull request #21886 from mariav0/patch-24

Update pledge_acknowledge_html.tpl

2 years agoMerge pull request #21885 from mariav0/patch-23
demeritcowboy [Fri, 22 Oct 2021 15:02:27 +0000 (11:02 -0400)]
Merge pull request #21885 from mariav0/patch-23

Update pcp_supporter_notify_html.tpl

2 years agoMerge pull request #21884 from mariav0/patch-22
demeritcowboy [Fri, 22 Oct 2021 15:01:50 +0000 (11:01 -0400)]
Merge pull request #21884 from mariav0/patch-22

Update pcp_status_change_html.tpl

2 years agoMerge pull request #21883 from mariav0/patch-21
demeritcowboy [Fri, 22 Oct 2021 15:01:38 +0000 (11:01 -0400)]
Merge pull request #21883 from mariav0/patch-21

Update pcp_notify_html.tpl

2 years agoMerge pull request #21882 from mariav0/patch-20
demeritcowboy [Fri, 22 Oct 2021 15:01:24 +0000 (11:01 -0400)]
Merge pull request #21882 from mariav0/patch-20

Update payment_or_refund_notification_html.tpl

2 years agoMerge pull request #21881 from mariav0/patch-19
demeritcowboy [Fri, 22 Oct 2021 15:01:10 +0000 (11:01 -0400)]
Merge pull request #21881 from mariav0/patch-19

Update participant_transferred_html.tpl

2 years agoMerge pull request #21880 from mariav0/patch-18
demeritcowboy [Fri, 22 Oct 2021 15:00:53 +0000 (11:00 -0400)]
Merge pull request #21880 from mariav0/patch-18

Update participant_expired_html.tpl

2 years agoMerge pull request #21879 from mariav0/patch-17
demeritcowboy [Fri, 22 Oct 2021 15:00:36 +0000 (11:00 -0400)]
Merge pull request #21879 from mariav0/patch-17

Update participant_confirm_html.tpl

2 years agoMerge pull request #21878 from mariav0/patch-16
demeritcowboy [Fri, 22 Oct 2021 15:00:23 +0000 (11:00 -0400)]
Merge pull request #21878 from mariav0/patch-16

Update participant_cancelled_html.tpl

2 years agoMerge pull request #21877 from mariav0/patch-15
demeritcowboy [Fri, 22 Oct 2021 15:00:10 +0000 (11:00 -0400)]
Merge pull request #21877 from mariav0/patch-15

Update membership_online_receipt_html.tpl

2 years agoMerge pull request #21876 from mariav0/patch-14
demeritcowboy [Fri, 22 Oct 2021 14:59:55 +0000 (10:59 -0400)]
Merge pull request #21876 from mariav0/patch-14

Update membership_offline_receipt_html.tpl

2 years agoMerge pull request #21875 from mariav0/patch-13
demeritcowboy [Fri, 22 Oct 2021 14:59:43 +0000 (10:59 -0400)]
Merge pull request #21875 from mariav0/patch-13

Update membership_autorenew_cancelled_html.tpl

2 years agoMerge pull request #21874 from mariav0/patch-12
demeritcowboy [Fri, 22 Oct 2021 14:59:26 +0000 (10:59 -0400)]
Merge pull request #21874 from mariav0/patch-12

Update membership_autorenew_billing_html.tpl

2 years agoMerge pull request #21873 from mariav0/patch-11
demeritcowboy [Fri, 22 Oct 2021 14:59:08 +0000 (10:59 -0400)]
Merge pull request #21873 from mariav0/patch-11

Update friend_html.tpl

2 years agoMerge pull request #21872 from mariav0/patch-10
demeritcowboy [Fri, 22 Oct 2021 14:58:52 +0000 (10:58 -0400)]
Merge pull request #21872 from mariav0/patch-10

Update event_online_receipt_html.tpl

2 years agoMerge pull request #21871 from mariav0/patch-9
demeritcowboy [Fri, 22 Oct 2021 14:58:32 +0000 (10:58 -0400)]
Merge pull request #21871 from mariav0/patch-9

Update event_offline_receipt_html.tpl

2 years agoMerge pull request #21870 from mariav0/patch-8
demeritcowboy [Fri, 22 Oct 2021 14:58:15 +0000 (10:58 -0400)]
Merge pull request #21870 from mariav0/patch-8

Update contribution_recurring_edit_html.tpl

2 years agoMerge pull request #21869 from mariav0/patch-7
demeritcowboy [Fri, 22 Oct 2021 14:58:00 +0000 (10:58 -0400)]
Merge pull request #21869 from mariav0/patch-7

Update contribution_recurring_cancelled_html.tpl

2 years agoMerge pull request #21862 from mariav0/patch-5
demeritcowboy [Fri, 22 Oct 2021 14:57:42 +0000 (10:57 -0400)]
Merge pull request #21862 from mariav0/patch-5

Update contribution_offline_receipt_html.tpl

2 years agoMerge pull request #21861 from mariav0/patch-4
demeritcowboy [Fri, 22 Oct 2021 14:57:24 +0000 (10:57 -0400)]
Merge pull request #21861 from mariav0/patch-4

Update contribution_dupalert_html.tpl

2 years agoMerge pull request #21860 from mariav0/patch-3
demeritcowboy [Fri, 22 Oct 2021 14:57:11 +0000 (10:57 -0400)]
Merge pull request #21860 from mariav0/patch-3

Update case_activity_html.tpl

2 years agoMerge pull request #21859 from mariav0/patch-2
demeritcowboy [Fri, 22 Oct 2021 14:56:47 +0000 (10:56 -0400)]
Merge pull request #21859 from mariav0/patch-2

Update contribution_recurring_notify_html.tpl

2 years agoMerge pull request #21176 from mattwire/unsubscribesmartgroups
demeritcowboy [Fri, 22 Oct 2021 14:55:20 +0000 (10:55 -0400)]
Merge pull request #21176 from mattwire/unsubscribesmartgroups

Handle checking smartgroups when generating list of groups to unsubscribe

2 years agoMerge pull request #21857 from colemanw/saveMatch
demeritcowboy [Fri, 22 Oct 2021 12:48:23 +0000 (08:48 -0400)]
Merge pull request #21857 from colemanw/saveMatch

APIv4 - Add 'match' param to save action

2 years agoMerge pull request #21903 from eileenmcnaughton/ref
demeritcowboy [Fri, 22 Oct 2021 12:47:25 +0000 (08:47 -0400)]
Merge pull request #21903 from eileenmcnaughton/ref

Remove unnecessary pass-by-reference

2 years agoAdd tests to Order create re memberships
Rich Lott / Artful Robot [Fri, 22 Oct 2021 11:36:53 +0000 (12:36 +0100)]
Add tests to Order create re memberships

2 years agoMerge pull request #21391 from eileenmcnaughton/fp
Monish Deb [Fri, 22 Oct 2021 07:27:19 +0000 (12:57 +0530)]
Merge pull request #21391 from eileenmcnaughton/fp

dev/core#2715 remove the  mystery self::_trxns property

2 years agoMerge pull request #21644 from sunilpawar/processed_token
Eileen McNaughton [Fri, 22 Oct 2021 03:59:52 +0000 (16:59 +1300)]
Merge pull request #21644 from sunilpawar/processed_token

show processed token in greeting dropdown

2 years agoMerge pull request #21697 from agileware/CIVICRM-1858
Eileen McNaughton [Fri, 22 Oct 2021 03:32:36 +0000 (16:32 +1300)]
Merge pull request #21697 from agileware/CIVICRM-1858

CiviCRM APIv3, Improve API Exception error message when trying to subscribe to a non-Public Mailing Group

2 years agoRemove unnecessary pass-by-reference
Eileen McNaughton [Fri, 22 Oct 2021 03:27:40 +0000 (16:27 +1300)]
Remove unnecessary pass-by-reference

2 years agoMerge pull request #21813 from christianwach/lab-core-2909
Eileen McNaughton [Fri, 22 Oct 2021 03:02:48 +0000 (16:02 +1300)]
Merge pull request #21813 from christianwach/lab-core-2909

Repair "Norwegian BokmÃ¥l" string

2 years agoAPIv4 - Add 'match' param to save action
Coleman Watts [Tue, 19 Oct 2021 00:09:52 +0000 (20:09 -0400)]
APIv4 - Add 'match' param to save action

This works similarly to the 'match' param in v3 `create`,
it checks for records matching the given fields, and will update instead of create
if an existing record is found.

2 years agoMerge pull request #21902 from eileenmcnaughton/tok
Seamus Lee [Thu, 21 Oct 2021 23:47:11 +0000 (10:47 +1100)]
Merge pull request #21902 from eileenmcnaughton/tok

Add help tip to comment block

2 years agoMerge pull request #21351 from colemanw/spreadsheetFormats
Eileen McNaughton [Thu, 21 Oct 2021 23:04:18 +0000 (12:04 +1300)]
Merge pull request #21351 from colemanw/spreadsheetFormats

SearchKit - Support download formats xlsx, ods, pdf

2 years agoMerge pull request #21573 from demeritcowboy/null-null
Eileen McNaughton [Thu, 21 Oct 2021 21:42:27 +0000 (10:42 +1300)]
Merge pull request #21573 from demeritcowboy/null-null

Change DAO's that have `'default' => 'NULL'` into `'default' => NULL`, i.e. true NULL

2 years agoAdd help tip
Eileen McNaughton [Thu, 21 Oct 2021 21:00:04 +0000 (10:00 +1300)]
Add help tip

2 years agoMerge pull request #21893 from MegaphoneJon/minute-as-recurring-unit
Eileen McNaughton [Thu, 21 Oct 2021 20:41:05 +0000 (09:41 +1300)]
Merge pull request #21893 from MegaphoneJon/minute-as-recurring-unit

add 'minute' as recurring unit

2 years agoMerge pull request #21901 from civicrm/5.43
Eileen McNaughton [Thu, 21 Oct 2021 20:39:20 +0000 (09:39 +1300)]
Merge pull request #21901 from civicrm/5.43

5.43 to master

2 years agoMerge pull request #21894 from colemanw/sortable
Eileen McNaughton [Thu, 21 Oct 2021 20:29:36 +0000 (09:29 +1300)]
Merge pull request #21894 from colemanw/sortable

[Unreleased Regression] SearchKit - Fix console errors when adding non-field columns

2 years agoMerge pull request #21900 from herbdool/backdrop-2
Eileen McNaughton [Thu, 21 Oct 2021 19:59:46 +0000 (08:59 +1300)]
Merge pull request #21900 from herbdool/backdrop-2

Correct CMS name on profile UF group types

2 years agoShow correct CMS name for profile uf group types
Herb v/d Dool [Thu, 21 Oct 2021 17:10:24 +0000 (13:10 -0400)]
Show correct CMS name for profile uf group types

2 years agoMerge pull request #21897 from mattwire/alterpaymenthookparams
demeritcowboy [Thu, 21 Oct 2021 13:47:32 +0000 (09:47 -0400)]
Merge pull request #21897 from mattwire/alterpaymenthookparams

Update docblock for alterPaymentProcessorParams because rawParams might be a payment propertyBag

2 years agoMerge pull request #21898 from jensschuppe/afformUndefinedIndexNotice
colemanw [Thu, 21 Oct 2021 13:46:14 +0000 (09:46 -0400)]
Merge pull request #21898 from jensschuppe/afformUndefinedIndexNotice

Prevent Undefined Index PHP notices with Afform entity metadata without an icon

2 years agoPrevent Undefined Index PHP notices with Afform entity metadata without an icon
Jens Schuppe [Thu, 21 Oct 2021 10:18:26 +0000 (12:18 +0200)]
Prevent Undefined Index PHP notices with Afform entity metadata without an icon

2 years agoUpdate docblock for alterPaymentProcessorParams because rawParams might be a payment...
Matthew Wire [Thu, 21 Oct 2021 08:54:49 +0000 (09:54 +0100)]
Update docblock for alterPaymentProcessorParams because rawParams might be a payment propertyBag

2 years agoSearchKit - Fix console errors when adding non-field columns
Coleman Watts [Wed, 20 Oct 2021 18:50:51 +0000 (14:50 -0400)]
SearchKit - Fix console errors when adding non-field columns

2 years agoMerge pull request #21891 from colemanw/initHideBoxes
Eileen McNaughton [Wed, 20 Oct 2021 20:31:03 +0000 (09:31 +1300)]
Merge pull request #21891 from colemanw/initHideBoxes

Export - Fix undefined tpl var

2 years agoadd 'minute' as recurring unit
Jon Goldberg [Wed, 20 Oct 2021 17:13:03 +0000 (13:13 -0400)]
add 'minute' as recurring unit

2 years agoFix test assertions that were the wrong way around (expected, actual)
Rich Lott / Artful Robot [Wed, 20 Oct 2021 15:59:45 +0000 (16:59 +0100)]
Fix test assertions that were the wrong way around (expected, actual)

2 years agoExport - Fix undefined tpl var
Coleman Watts [Wed, 20 Oct 2021 15:17:38 +0000 (11:17 -0400)]
Export - Fix undefined tpl var

This varable was a string of javascript leftover from the old export UI,
no longer used or needed by the new Angular UI.

2 years agoSimplify and reduce Order test code, add comments
Rich Lott / Artful Robot [Wed, 20 Oct 2021 14:31:10 +0000 (15:31 +0100)]
Simplify and reduce Order test code, add comments

2 years agoUpdate contribution_invoice_receipt_html.tpl
Maria [Wed, 20 Oct 2021 09:40:06 +0000 (11:40 +0200)]
Update contribution_invoice_receipt_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate uf_notify_html.tpl
Maria [Wed, 20 Oct 2021 09:37:43 +0000 (11:37 +0200)]
Update uf_notify_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate test_preview_html.tpl
Maria [Wed, 20 Oct 2021 09:37:10 +0000 (11:37 +0200)]
Update test_preview_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate pledge_reminder_html.tpl
Maria [Wed, 20 Oct 2021 09:36:31 +0000 (11:36 +0200)]
Update pledge_reminder_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate pledge_acknowledge_html.tpl
Maria [Wed, 20 Oct 2021 09:35:59 +0000 (11:35 +0200)]
Update pledge_acknowledge_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate pcp_supporter_notify_html.tpl
Maria [Wed, 20 Oct 2021 09:34:50 +0000 (11:34 +0200)]
Update pcp_supporter_notify_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate pcp_status_change_html.tpl
Maria [Wed, 20 Oct 2021 09:34:12 +0000 (11:34 +0200)]
Update pcp_status_change_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate pcp_notify_html.tpl
Maria [Wed, 20 Oct 2021 09:33:17 +0000 (11:33 +0200)]
Update pcp_notify_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate payment_or_refund_notification_html.tpl
Maria [Wed, 20 Oct 2021 09:32:17 +0000 (11:32 +0200)]
Update payment_or_refund_notification_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate participant_transferred_html.tpl
Maria [Wed, 20 Oct 2021 09:31:29 +0000 (11:31 +0200)]
Update participant_transferred_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate participant_expired_html.tpl
Maria [Wed, 20 Oct 2021 09:30:57 +0000 (11:30 +0200)]
Update participant_expired_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate participant_confirm_html.tpl
Maria [Wed, 20 Oct 2021 09:29:54 +0000 (11:29 +0200)]
Update participant_confirm_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate participant_cancelled_html.tpl
Maria [Wed, 20 Oct 2021 09:29:14 +0000 (11:29 +0200)]
Update participant_cancelled_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate membership_online_receipt_html.tpl
Maria [Wed, 20 Oct 2021 09:28:38 +0000 (11:28 +0200)]
Update membership_online_receipt_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.

2 years agoUpdate membership_offline_receipt_html.tpl
Maria [Wed, 20 Oct 2021 09:27:49 +0000 (11:27 +0200)]
Update membership_offline_receipt_html.tpl

Text and table do not fit well together when everything is centered (in most message templates). The change should be applied for all message templates for consistency reasons.
More information (including screenshots) can you find here: #21850
Important note: I haven't tested this specific template. I don't think it's a major change and it will look and work as well as all other templates. If you think it is needed, me or anyone else (any help is highly appreciated :) can provide screenshots.