civicrm-core.git
6 years agoMerge pull request #11727 from jitendrapurohit/CRM-21807
Eileen McNaughton [Mon, 19 Mar 2018 07:55:14 +0000 (20:55 +1300)]
Merge pull request #11727 from jitendrapurohit/CRM-21807

CRM-21807 - Deleted contacts included by default in Membership and co…

6 years agoMerge pull request #11820 from seanmadsen/CRM-21264
Eileen McNaughton [Mon, 19 Mar 2018 06:53:00 +0000 (19:53 +1300)]
Merge pull request #11820 from seanmadsen/CRM-21264

 CRM-21264 - Fix tabular formatting of contributions in merged letters grouped by contact

6 years agoMerge pull request #10776 from eileenmcnaughton/mon2
Eileen McNaughton [Mon, 19 Mar 2018 00:00:11 +0000 (13:00 +1300)]
Merge pull request #10776 from eileenmcnaughton/mon2

CRM-20610 expose payment edit form on the contribution page

6 years agoMerge pull request #11809 from mattwire/devcore17_interview_task_pseudoconstant
Eileen McNaughton [Sun, 18 Mar 2018 22:54:01 +0000 (11:54 +1300)]
Merge pull request #11809 from mattwire/devcore17_interview_task_pseudoconstant

dev/core/17 Convert interview task to use Pseudoconstants

6 years agodev/core/17 Convert interview task to use Pseudoconstants
Matthew Wire [Wed, 14 Mar 2018 11:56:37 +0000 (11:56 +0000)]
dev/core/17 Convert interview task to use Pseudoconstants

6 years agoMerge pull request #11797 from hoegrammer/master
colemanw [Fri, 16 Mar 2018 16:35:49 +0000 (12:35 -0400)]
Merge pull request #11797 from hoegrammer/master

CRM-21838 strip html tags from alerts when crm-notification-container div is not present

6 years agoMerge pull request #11818 from mukeshcompucorp/fix-template-structure-issues
colemanw [Fri, 16 Mar 2018 16:32:17 +0000 (12:32 -0400)]
Merge pull request #11818 from mukeshcompucorp/fix-template-structure-issues

Fix template in pledge and batch

6 years agoSet version to 5.1.alpha1
CiviCRM [Thu, 15 Mar 2018 23:14:45 +0000 (23:14 +0000)]
Set version to 5.1.alpha1

6 years agoset-version.php - Fix for running on uninitialized codebase
CiviCRM [Thu, 15 Mar 2018 23:06:29 +0000 (23:06 +0000)]
set-version.php - Fix for running on uninitialized codebase

The script assumes that `civicrm-version.php` is around. It will eventually be
committed, and it's available if you ran GenCode, but it's not *necessarily*
around yet.

6 years agoDowngrade number from 5.0.0 to 5.0.beta1
CiviCRM [Thu, 15 Mar 2018 23:05:08 +0000 (23:05 +0000)]
Downgrade number from 5.0.0 to 5.0.beta1

We're about to branch for RC period. Since we've got the third digit again
(for use in each monthly cycle), let's take advantage of it!

6 years agoCRM-21264 - Fix broken regular expression
Sean Madsen [Thu, 15 Mar 2018 14:58:33 +0000 (10:58 -0400)]
CRM-21264 - Fix broken regular expression

* Escape dot in token since it will be used in a regex (for good
  measure)
* Add `(?![\w-])` to ensure that `td` is not followed by other
  characters that would make it a different element.
* Instead of the first `.+?`, use `((?!</td>).)*` which matches zero or
  more characters but refuses to consume if it encounters `</td>`
* Escape curly braces (for good measure)
* Instead of the second `.+?`, use `.*?` so that it will match if there
  are zero characters. (Note: this change is really the crux of the
  issue, as described in CRM-21264).
* Complete then closing `</td>` (for good measure)

6 years agoCRM-21264 - Minor refactoring
Sean Madsen [Thu, 15 Mar 2018 14:45:53 +0000 (10:45 -0400)]
CRM-21264 - Minor refactoring

* Improve docblock
* Get rid of "dontCare" since that argument is optional as of PHP 5.4
  http://php.net/manual/en/function.preg-match-all.php#refsect1-function.preg-match-all-changelog
* Move regex to its own line to improve readability

6 years agoCRM-21264 - Add test for isHtmlTokenInTableCell
Sean Madsen [Thu, 15 Mar 2018 14:40:16 +0000 (10:40 -0400)]
CRM-21264 - Add test for isHtmlTokenInTableCell

Test currently fails on "simplest TRUE" case added, which demonstrates
the bug described in CRM-21264. Also added other test cases which
current fail as well.

6 years agoFix template in pledge and batch
Mukesh Ram [Thu, 15 Mar 2018 14:05:03 +0000 (19:35 +0530)]
Fix template in pledge and batch

6 years agoMerge pull request #11815 from eileenmcnaughton/notice
Eileen McNaughton [Thu, 15 Mar 2018 11:20:17 +0000 (00:20 +1300)]
Merge pull request #11815 from eileenmcnaughton/notice

Activity Form - Fix recently introduced warning

6 years agoMerge pull request #11519 from eileenmcnaughton/hook
Eileen McNaughton [Thu, 15 Mar 2018 07:48:20 +0000 (20:48 +1300)]
Merge pull request #11519 from eileenmcnaughton/hook

CRM-21659 - Add hook to CRM_Utils_System::redirect

6 years agoCRM_Utils_Hook::alterRedirect - Pass URL by reference
Tim Otten [Thu, 15 Mar 2018 05:19:49 +0000 (22:19 -0700)]
CRM_Utils_Hook::alterRedirect - Pass URL by reference

PSR-7 specifies that the `UriInterface` is immutable.  There are methods
like `withQuery(...)` which generate a *new instance*.

For the hook to support altering the URL, you must be able to replace the
`$url` with a newer instance.

6 years agoWarning fix
eileen [Thu, 15 Mar 2018 04:21:44 +0000 (17:21 +1300)]
Warning fix

6 years agoMerge pull request #11813 from seanmadsen/add-survey-pre-post-hooks
Eileen McNaughton [Thu, 15 Mar 2018 02:28:25 +0000 (15:28 +1300)]
Merge pull request #11813 from seanmadsen/add-survey-pre-post-hooks

Add pre and post hooks to the Survey entity

6 years agoMerge pull request #11811 from mukeshcompucorp/fix-template-structure-issues
Eileen McNaughton [Wed, 14 Mar 2018 22:59:14 +0000 (11:59 +1300)]
Merge pull request #11811 from mukeshcompucorp/fix-template-structure-issues

Fix transaction template

6 years agoMerge pull request #11704 from totten/master-50
Eileen McNaughton [Wed, 14 Mar 2018 22:32:14 +0000 (11:32 +1300)]
Merge pull request #11704 from totten/master-50

dev/release/1 - Change numbering to 5.x.x

6 years agoAdd pre/post hooks to the Survey entity
Sean Madsen [Wed, 14 Mar 2018 21:31:47 +0000 (17:31 -0400)]
Add pre/post hooks to the Survey entity

Also improve docblock

6 years agoMerge pull request #11808 from mattwire/CRM-21391_find_respondents_fix
Eileen McNaughton [Wed, 14 Mar 2018 21:04:35 +0000 (10:04 +1300)]
Merge pull request #11808 from mattwire/CRM-21391_find_respondents_fix

CRM-21391 Fix for "Find Respondents" Search

6 years agoCRM-21391 Fix 'Find Respondents' Search Tasks
Matthew Wire [Wed, 14 Mar 2018 11:50:48 +0000 (11:50 +0000)]
CRM-21391 Fix 'Find Respondents' Search Tasks

6 years agoFix transaction templates
Mukesh Ram [Wed, 14 Mar 2018 11:36:04 +0000 (17:06 +0530)]
Fix transaction templates

6 years agoCRM-21659 Add hook to CRM_Utils_System::redirect
eileen [Wed, 14 Mar 2018 02:00:15 +0000 (15:00 +1300)]
CRM-21659 Add hook to CRM_Utils_System::redirect

fixup CRM-21659 Add hook to CRM_Utils_System::redirect

This renames the hook function to be stylistically more consistent.  In
other tests, the function name matches the hook name.

6 years agoSet version to 5.0.0
Tim Otten [Wed, 21 Feb 2018 23:41:21 +0000 (15:41 -0800)]
Set version to 5.0.0

6 years agoMerge pull request #11721 from eileenmcnaughton/website
colemanw [Tue, 13 Mar 2018 13:06:12 +0000 (09:06 -0400)]
Merge pull request #11721 from eileenmcnaughton/website

Fix relationshipType, paymentProcessorType, Note & jobLog apis to support custom data

6 years agoMerge pull request #11590 from michaelmcandrew/CRM-21576-sms-permission
colemanw [Tue, 13 Mar 2018 13:02:06 +0000 (09:02 -0400)]
Merge pull request #11590 from michaelmcandrew/CRM-21576-sms-permission

CRM-21576 Add a 'send SMS' permission

6 years agoMerge pull request #11796 from mukeshcompucorp/fix-template-structure-issues
colemanw [Tue, 13 Mar 2018 12:10:45 +0000 (08:10 -0400)]
Merge pull request #11796 from mukeshcompucorp/fix-template-structure-issues

Fix html template structure with classes, divs & tags

6 years agoAdding Send SMS permission + test + upgrade message
Michael McAndrew [Tue, 13 Mar 2018 09:18:36 +0000 (09:18 +0000)]
Adding Send SMS permission + test + upgrade message

6 years agoMerge pull request #11801 from eileenmcnaughton/api_test
Monish Deb [Tue, 13 Mar 2018 07:47:00 +0000 (13:17 +0530)]
Merge pull request #11801 from eileenmcnaughton/api_test

Add test for api money, fix net_amount calc

6 years agoMerge pull request #11802 from jitendrapurohit/CRM-21777-ts
Eileen McNaughton [Tue, 13 Mar 2018 07:20:02 +0000 (20:20 +1300)]
Merge pull request #11802 from jitendrapurohit/CRM-21777-ts

CRM-21777 - add ts to the message string

6 years agoCall labels from logic instead of static
Mukesh Ram [Tue, 13 Mar 2018 05:35:18 +0000 (11:05 +0530)]
Call labels from logic instead of static

6 years agoCRM-21777 - add ts to the message string
Jitendra Purohit [Tue, 13 Mar 2018 05:13:43 +0000 (10:43 +0530)]
CRM-21777 - add ts to the message string

6 years agoAdd test for api money, fix net_amount calc
eileen [Tue, 13 Mar 2018 03:24:23 +0000 (16:24 +1300)]
Add test for api money, fix net_amount calc

6 years agoMerge pull request #11781 from colemanw/MenuHacks
Eileen McNaughton [Tue, 13 Mar 2018 01:04:10 +0000 (14:04 +1300)]
Merge pull request #11781 from colemanw/MenuHacks

Remove hacks from CRM_Core_Menu for old unsupported versions

6 years agoMerge pull request #11799 from eileenmcnaughton/enotice
Eileen McNaughton [Mon, 12 Mar 2018 23:36:11 +0000 (12:36 +1300)]
Merge pull request #11799 from eileenmcnaughton/enotice

E-notice fix.

6 years agoCRM-21838 - Strips html from CRM.alert when falling back to alert()
Naomi [Mon, 12 Mar 2018 20:53:33 +0000 (22:53 +0200)]
CRM-21838 - Strips html from CRM.alert when falling back to alert()

6 years agoE-notice fix - move variable declaration to parent class.
eileen [Mon, 12 Mar 2018 08:02:29 +0000 (21:02 +1300)]
E-notice fix - move variable declaration to parent class.

I hit this when editing a contribution with line items related to membership.

6 years agoMerge pull request #11800 from GinkgoFJG/patch-2
colemanw [Mon, 12 Mar 2018 19:57:26 +0000 (15:57 -0400)]
Merge pull request #11800 from GinkgoFJG/patch-2

CRM-21667: Fix for timezone handoff from Drupal6 should take DST into account.

6 years agoMerge pull request #11777 from twomice/CRM-20608_paypal_ipn_confuses_pro_vs_standard
Mathieu Lu [Mon, 12 Mar 2018 18:51:29 +0000 (14:51 -0400)]
Merge pull request #11777 from twomice/CRM-20608_paypal_ipn_confuses_pro_vs_standard

CRM-20608: IPN thinks Paypal Pro is Standard.

6 years agoCRM-21667: Fix for timezone handoff from Drupal6 should take DST into account
Frank J. Gómez [Mon, 12 Mar 2018 17:04:36 +0000 (13:04 -0400)]
CRM-21667: Fix for timezone handoff from Drupal6 should take DST into account

6 years agoFix for CRM-20608: throw exception in case of not-found processor or wrong processor...
Allen Shaw [Mon, 12 Mar 2018 16:11:45 +0000 (11:11 -0500)]
Fix for CRM-20608: throw exception in case of not-found processor or wrong processor type.

6 years agoMerge pull request #11795 from mattwire/form_disabled_currency
Eileen McNaughton [Mon, 12 Mar 2018 09:06:14 +0000 (22:06 +1300)]
Merge pull request #11795 from mattwire/form_disabled_currency

dev/financial/5 If a currency has been disabled allow the form to be submitted

6 years agoMerge pull request #11798 from eileenmcnaughton/test
Seamus Lee [Mon, 12 Mar 2018 04:06:26 +0000 (15:06 +1100)]
Merge pull request #11798 from eileenmcnaughton/test

Update test to NOT accept a failure in the api call.

6 years agoMerge pull request #11680 from jitendrapurohit/setting
Eileen McNaughton [Mon, 12 Mar 2018 04:00:36 +0000 (17:00 +1300)]
Merge pull request #11680 from jitendrapurohit/setting

CRM-21777 - Set readonly for the fields initialised in civicrm_settings.php

6 years agoMerge pull request #11761 from mattwire/CRM-21391_mailing_task
Eileen McNaughton [Mon, 12 Mar 2018 03:34:01 +0000 (16:34 +1300)]
Merge pull request #11761 from mattwire/CRM-21391_mailing_task

CRM-21391 Convert Mailing to use core Task class

6 years agoMerge pull request #11762 from mattwire/CRM-21391_member_task
Eileen McNaughton [Mon, 12 Mar 2018 03:22:30 +0000 (16:22 +1300)]
Merge pull request #11762 from mattwire/CRM-21391_member_task

CRM-21391 Convert Member to use core Task class

6 years agoUpdate test to NOT accept a failure in the api call.
eileen [Mon, 12 Mar 2018 02:27:44 +0000 (15:27 +1300)]
Update test to NOT accept a failure in the api call.

I believe the failure handling exists because this was copied from a test that
uses a real payment gateway's sandbox account, hence intermittant failure.

However, we don't need that for the Dummy processor & it's making debugging hard

6 years agoMerge pull request #11780 from JMAConsulting/CRM-21756
Eileen McNaughton [Sun, 11 Mar 2018 22:17:57 +0000 (11:17 +1300)]
Merge pull request #11780 from JMAConsulting/CRM-21756

CRM-21756: Freeze total amount field on Edit Contribution if related to Membership or Event registration

6 years agoMerge pull request #11763 from mattwire/CRM-21391_pledge_task
Eileen McNaughton [Sun, 11 Mar 2018 22:06:51 +0000 (11:06 +1300)]
Merge pull request #11763 from mattwire/CRM-21391_pledge_task

CRM-21391 Convert Pledge to use core Task class

6 years agoMerge pull request #11776 from vinuvarshith/CRM-21830-state-province-tokens-not-worki...
Eileen McNaughton [Sun, 11 Mar 2018 21:39:29 +0000 (10:39 +1300)]
Merge pull request #11776 from vinuvarshith/CRM-21830-state-province-tokens-not-working-billing-address

CRM-21830: Add 'state_province_name' token and set appropriate value …

6 years agoMerge pull request #11600 from mattwire/CRM-21720_core_task_search_classes
Eileen McNaughton [Sun, 11 Mar 2018 21:32:30 +0000 (10:32 +1300)]
Merge pull request #11600 from mattwire/CRM-21720_core_task_search_classes

CRM-21720 Cleanup search classes to use enumerators instead of hardcoded values

6 years agoConvert Contact to use core Task class (#11764)
Matthew Wire [Sun, 11 Mar 2018 21:31:52 +0000 (21:31 +0000)]
Convert Contact to use core Task class (#11764)

6 years agoAdd contributionStatusName to invoice params so you don't have to use hardcoded IDs...
Matthew Wire [Sun, 11 Mar 2018 21:23:52 +0000 (21:23 +0000)]
Add contributionStatusName to invoice params so you don't have to use hardcoded IDs in template (#11771)

6 years agoFix template structure
Mukesh Ram [Sat, 10 Mar 2018 11:02:03 +0000 (16:32 +0530)]
Fix template structure

6 years agoMerge pull request #11769 from JMAConsulting/CRM-21806
Tim Otten [Sat, 10 Mar 2018 01:30:45 +0000 (17:30 -0800)]
Merge pull request #11769 from JMAConsulting/CRM-21806

[REGRESSION] CRM-21806: Fix issues is search form when FULL_GROUP_BY_MODE enabled

6 years agoMerge pull request #11790 from GinkgoFJG/dev/core#12-crmWizard-scrollup
colemanw [Fri, 9 Mar 2018 15:09:10 +0000 (10:09 -0500)]
Merge pull request #11790 from GinkgoFJG/dev/core#12-crmWizard-scrollup

dev/core#12: Added auto-scroll-up functionality between steps to crmUiWizard

6 years agoMerge pull request #11792 from mukeshcompucorp/fix-template-structure-issues
colemanw [Fri, 9 Mar 2018 14:36:45 +0000 (09:36 -0500)]
Merge pull request #11792 from mukeshcompucorp/fix-template-structure-issues

Fix style glitches

6 years agoMerge pull request #11793 from cor73x/CRM-21837
Mathieu Lu [Fri, 9 Mar 2018 14:21:19 +0000 (09:21 -0500)]
Merge pull request #11793 from cor73x/CRM-21837

Refs CRM-21837 - Missing states for Gabon

6 years agoIf a currency has been disabled allow the form to be submitted
Matthew Wire [Fri, 9 Mar 2018 11:39:51 +0000 (11:39 +0000)]
If a currency has been disabled allow the form to be submitted

6 years agoFix classes and tags
Mukesh Ram [Fri, 9 Mar 2018 10:10:06 +0000 (15:40 +0530)]
Fix classes and tags

6 years agoRefs CRM-21837 - Missing states for Gabon
Lukasz Krutul [Fri, 9 Mar 2018 10:07:15 +0000 (11:07 +0100)]
Refs CRM-21837 - Missing states for Gabon

6 years agoMake pledge labels proper
Mukesh Ram [Fri, 9 Mar 2018 07:21:39 +0000 (12:51 +0530)]
Make pledge labels proper

6 years agoAdd appropriate labels
Mukesh Ram [Fri, 9 Mar 2018 06:10:11 +0000 (11:40 +0530)]
Add appropriate labels

6 years agoFix style glitches
Mukesh Ram [Fri, 9 Mar 2018 04:42:17 +0000 (10:12 +0530)]
Fix style glitches

6 years agoMerge pull request #11791 from civicrm/4.7.31-rc
Tim Otten [Fri, 9 Mar 2018 00:04:47 +0000 (16:04 -0800)]
Merge pull request #11791 from civicrm/4.7.31-rc

4.7.31 rc

6 years agodev/core#12: Added auto-scroll-up functionality between steps to crmUiWizard.
Frank J. Gómez [Thu, 8 Mar 2018 20:39:36 +0000 (15:39 -0500)]
dev/core#12: Added auto-scroll-up functionality between steps to crmUiWizard.

6 years agoMerge pull request #11788 from mukeshcompucorp/fix-template-structure-issues
colemanw [Thu, 8 Mar 2018 14:24:20 +0000 (09:24 -0500)]
Merge pull request #11788 from mukeshcompucorp/fix-template-structure-issues

Make template structure proper

6 years agoMake template structure proper
Mukesh Ram [Thu, 8 Mar 2018 13:00:25 +0000 (18:30 +0530)]
Make template structure proper

6 years agoMerge pull request #11741 from agh1/4.7.31-releasenotes
Tim Otten [Wed, 7 Mar 2018 23:39:57 +0000 (15:39 -0800)]
Merge pull request #11741 from agh1/4.7.31-releasenotes

4.7.31 release notes

6 years ago4.7.31 release notes: last-minute credit add
Andrew Hunt [Wed, 7 Mar 2018 20:22:41 +0000 (15:22 -0500)]
4.7.31 release notes: last-minute credit add

6 years ago4.7.31 release notes: fixed one mis-categorized thing
Andrew Hunt [Wed, 7 Mar 2018 19:56:58 +0000 (14:56 -0500)]
4.7.31 release notes: fixed one mis-categorized thing

6 years ago4.7.31 release notes: alphabetized sections and filled synopsis
Andrew Hunt [Wed, 7 Mar 2018 17:03:48 +0000 (12:03 -0500)]
4.7.31 release notes: alphabetized sections and filled synopsis

Also added late change

6 years ago4.7.31 release notes: finished bugs
Andrew Hunt [Wed, 7 Mar 2018 16:59:56 +0000 (11:59 -0500)]
4.7.31 release notes: finished bugs

6 years ago4.7.31 release notes: added code contributors since 4.7.14 to CONTRIBUTORS.txt
Andrew Hunt [Wed, 7 Mar 2018 02:59:34 +0000 (21:59 -0500)]
4.7.31 release notes: added code contributors since 4.7.14 to CONTRIBUTORS.txt

6 years ago4.7.31 release notes: finished contributors
Andrew Hunt [Wed, 7 Mar 2018 01:44:23 +0000 (20:44 -0500)]
4.7.31 release notes: finished contributors

6 years ago4.7.31 release notes: done with features
Andrew Hunt [Wed, 7 Mar 2018 00:26:51 +0000 (19:26 -0500)]
4.7.31 release notes: done with features

6 years ago4.7.31 release notes: first items, boilerplate
Andrew Hunt [Wed, 28 Feb 2018 17:23:51 +0000 (12:23 -0500)]
4.7.31 release notes: first items, boilerplate

6 years agoMerge pull request #11779 from mukeshcompucorp/fix-template-structure-issues
colemanw [Wed, 7 Mar 2018 16:51:46 +0000 (11:51 -0500)]
Merge pull request #11779 from mukeshcompucorp/fix-template-structure-issues

Fix template structure

6 years agoMerge pull request #11774 from colemanw/NFC
colemanw [Wed, 7 Mar 2018 16:18:38 +0000 (11:18 -0500)]
Merge pull request #11774 from colemanw/NFC

NFC - Minor code cleanup in CKEditorConfig.php

6 years agoRemove hacks from CRM_Core_Menu for old unsupported versions
Coleman Watts [Wed, 7 Mar 2018 16:15:19 +0000 (11:15 -0500)]
Remove hacks from CRM_Core_Menu for old unsupported versions

6 years agoCRM-21756: Freeze total amount field on Edit Contribution if related to membership...
deb.monish [Wed, 7 Mar 2018 14:03:27 +0000 (19:33 +0530)]
CRM-21756: Freeze total amount field on Edit Contribution if related to membership or Event registration

6 years agoAdd proper class to form
Mukesh Ram [Wed, 7 Mar 2018 11:50:23 +0000 (17:20 +0530)]
Add proper class to form

6 years agoFix template structure
Mukesh Ram [Wed, 7 Mar 2018 11:00:24 +0000 (16:30 +0530)]
Fix template structure

6 years agoFix for CRM-20608: IPN thinks Paypal Pro is Standard.
Allen Shaw [Wed, 7 Mar 2018 04:38:57 +0000 (22:38 -0600)]
Fix for CRM-20608: IPN thinks Paypal Pro is Standard.

6 years agoCRM-21813 : Parameter list mismatch (#11734)
Aniessh Sethh [Wed, 7 Mar 2018 03:30:53 +0000 (09:00 +0530)]
CRM-21813 : Parameter list mismatch (#11734)

* Fix for CRM-21813

6 years agoCRM-21830: Add 'state_province_name' token and set appropriate value to it so that...
varshith89 [Wed, 7 Mar 2018 03:04:59 +0000 (03:04 +0000)]
CRM-21830: Add 'state_province_name' token and set appropriate value to it so that it is not empty for billing address

6 years agoMerge pull request #11775 from agh1/cancel-fa-fixes
colemanw [Wed, 7 Mar 2018 02:24:13 +0000 (21:24 -0500)]
Merge pull request #11775 from agh1/cancel-fa-fixes

CiviMember: use `fa-ban`, proper `crm-i` class for canceled auto-renew

6 years agoCiviMember: use `fa-ban`, proper `crm-i` class for canceled auto-renew
Andrew Hunt [Tue, 6 Mar 2018 21:33:03 +0000 (16:33 -0500)]
CiviMember: use `fa-ban`, proper `crm-i` class for canceled auto-renew

6 years agoNFC - Minor code cleanup in CKEditorConfig.php
Coleman Watts [Tue, 6 Mar 2018 20:49:00 +0000 (15:49 -0500)]
NFC - Minor code cleanup in CKEditorConfig.php

6 years agoMerge pull request #11773 from civicrm/4.7.31-rc
Seamus Lee [Tue, 6 Mar 2018 20:13:02 +0000 (07:13 +1100)]
Merge pull request #11773 from civicrm/4.7.31-rc

4.7.31 rc

6 years agoMerge pull request #11749 from eileenmcnaughton/4.7.31-rc
Seamus Lee [Tue, 6 Mar 2018 20:10:28 +0000 (07:10 +1100)]
Merge pull request #11749 from eileenmcnaughton/4.7.31-rc

CRM-21771: error when viewing event registration with linked contribu…

6 years agoMerge pull request #11770 from mattwire/messagetemplate_form_fixes
colemanw [Tue, 6 Mar 2018 14:34:31 +0000 (09:34 -0500)]
Merge pull request #11770 from mattwire/messagetemplate_form_fixes

Add 'huge' class to html textarea to match plaintext textarea

6 years agoCRM-21806: Fix issues is search form when FULL_GROUP_BY_MODE enabled
deb.monish [Tue, 6 Mar 2018 07:28:57 +0000 (12:58 +0530)]
CRM-21806: Fix issues is search form when FULL_GROUP_BY_MODE enabled

6 years agoAdd 'huge' class to html textarea to match plaintext textarea
Matthew Wire [Tue, 6 Mar 2018 09:53:58 +0000 (09:53 +0000)]
Add 'huge' class to html textarea to match plaintext textarea

6 years agoMerge pull request #11757 from eileenmcnaughton/manual
Monish Deb [Tue, 6 Mar 2018 05:05:03 +0000 (10:35 +0530)]
Merge pull request #11757 from eileenmcnaughton/manual

CRM-21819 - Do not load 'Submit Credit Card Contribution' button if only pseudo-manual processor exists

6 years agoMerge pull request #11768 from jmcclelland/core-issue-7
Eileen McNaughton [Tue, 6 Mar 2018 05:01:27 +0000 (18:01 +1300)]
Merge pull request #11768 from jmcclelland/core-issue-7

ensure correct payment_instrument_id

6 years agoMerge pull request #11453 from colemanw/php55
Mathieu Lu [Tue, 6 Mar 2018 00:05:06 +0000 (19:05 -0500)]
Merge pull request #11453 from colemanw/php55

Update minimum php version to 5.5