civicrm-core.git
9 years agoCRM-17187 - Minor notification message CSS improvement (tables, action links)
JKingsnorth [Wed, 9 Sep 2015 13:16:08 +0000 (14:16 +0100)]
CRM-17187 - Minor notification message CSS improvement (tables, action links)

9 years agoMerge pull request #6693 from eileenmcnaughton/CRM-16195-rebase
Eileen McNaughton [Wed, 9 Sep 2015 05:16:57 +0000 (17:16 +1200)]
Merge pull request #6693 from eileenmcnaughton/CRM-16195-rebase

CRM-16195 use option values to store relative date filter config

9 years agoCRM-16195 add option values to sql
eileenmcnaugton [Mon, 7 Sep 2015 00:18:32 +0000 (12:18 +1200)]
CRM-16195 add option values to sql

-- CRM-16195 add relative values
INSERT INTO civicrm_option_group (, title, is_reserved, is_active)
VALUES ('relative_date_filters','Relative Date Filters', 1, 1);

SELECT @ogid := max(id) from civicrm_option_group where name = 'relative_date_filters';
INSERT INTO civicrm_option_value
(option_group_id, label, value, , weight, is_reserved, is_active)
VALUES
(@ogid, 'Previous 2 Years', 'previous_2.year', 'previous_2.year', 1, 0, 1),
(@ogid, 'Previous 2 Quarters', 'previous_2.quarter', 'previous_2.quarter', 2, 0, 1),
(@ogid, 'Previous 2 Months', 'previous_2.month', 'previous_2.month', 3,0,1),
(@ogid, 'Previous 2 Weeks', 'previous_2.week', 'previous_2.week', 4, 0, 1),
(@ogid, 'Previous 2 Days', 'previous_2.day', 'previous_2.day', 5, 0, 1),
(@ogid, 'Prior to Previous Year', 'previous_before.year', 'previous_before.year', 6, 0, 1),
(@ogid, 'Prior to Previous Quarter', 'previous_before.quarter', 'previous_before.quarter', 7, 0, 1),
(@ogid, 'Prior to Previous Month', 'previous_before.month', 'previous_before.month', 8, 0, 1),
(@ogid, 'Prior to Previous Week', 'previous_before.week', 'previous_before.week', 9, 0, 1),
(@ogid, 'Prior to Previous Day', 'previous_before.day', 'previous_before.day', 10, 0, 1),
(@ogid, 'Previous Year', 'previous.year', 'previous.year', 11, 0, 1),
(@ogid, 'Previous Fiscal Year', 'previous.fiscal_year', 'previous.fiscal_year', 12, 0, 1),
(@ogid, 'Previous Quarter', 'previous.quarter', 'previous.quarter', 13, 0, 1),
(@ogid, 'Previous Month', 'previous.month', 'previous.month', 14, 0, 1),
(@ogid, 'Previous Week', 'previous.week', 'previous.week', 15, 0, 1),
(@ogid, 'To End of Previous Year', 'earlier.year', 'earlier.year', 16, 0, 1),
(@ogid, 'To End of Previous Quarter', 'earlier.quarter', 'earlier.quarter', 17, 0, 1),
(@ogid, 'To End of Previous Month', 'earlier.month', 'earlier.month', 18, 0, 1),
(@ogid, 'To End of Previous Week', 'earlier.week', 'earlier.week', 19, 0, 1),
(@ogid, 'To End of Previous Day', 'earlier.day', 'earlier.day', 20, 0, 1),
(@ogid, 'From End of Previous Year', 'greater_previous.year', 'greater_previous.year', 21, 0, 1),
(@ogid, 'From End of Previous Quarter', 'greater_previous.quarter', 'greater_previous.quarter', 22, 0, 1),
(@ogid, 'From End of Previous Month', 'greater_previous.month', 'greater_previous.month', 23, 0, 1),
(@ogid, 'From End of Previous Week', 'greater_previous.week', 'greater_previous.week', 24, 0, 1),
(@ogid, 'From Start of Current Year', 'greater.year', 'greater.year', 25, 0, 1),
(@ogid, 'From Start of Current Quarter', 'greater.quarter', 'greater.quarter', 26, 0, 1),
(@ogid, 'From Start of Current Month', 'greater.month', 'greater.month', 27, 0, 1),
(@ogid, 'From Start of Current Week', 'greater.week', 'greater.week', 28, 0, 1),
(@ogid, 'From Start of Current Day', 'greater.day', 'greater.day', 29, 0, 1),
(@ogid, 'Current Year to-date', 'current.year', 'current.year', 30, 0, 1),
(@ogid, 'Current Quarter to-date', 'current.quarter', 'current.quarter', 31, 0, 1),
(@ogid, 'Current Month to-date', 'current.month', 'current.month', 32, 0, 1),
(@ogid, 'Current Week to-date', 'current.week', 'current.week', 33, 0, 1),
(@ogid, 'Last 3 Years', 'ending_3.year', 'ending_3.year', 34, 0, 1),
(@ogid, 'Last 2 Years', 'ending_2.year', 'ending_2.year', 35, 0, 1),
(@ogid, 'Last 12 Months', 'ending.year', 'ending.year', 36, 0, 1),
(@ogid, 'Last 3 Months', 'ending.quarter', 'ending.quarter', 37, 0, 1),
(@ogid, 'Last Month', 'ending.month', 'ending.month', 38, 0, 1),
(@ogid, 'Last 7 days', 'ending.week', 'ending.week', 39, 0, 1),
(@ogid, 'Yesterday', 'previous.day', 'previous.day', 40, 0, 1),
(@ogid, 'This Year', 'this.year', 'this.year', 41, 0, 1),
(@ogid, 'This Fiscal Year', 'this.fiscal_year', 'this.fiscal_year', 42, 0, 1),
(@ogid, 'This Quarter', 'this.quarter', 'this.quarter', 43, 0, 1),
(@ogid, 'This Month', 'this.month', 'this.month', 44, 0, 1),
(@ogid, 'This Week', 'this.week', 'this.week', 45, 0, 1),
(@ogid, 'Today', 'this.day', 'this.day', 46, 0, 1),
(@ogid, 'Tomorrow', 'starting.day', 'starting.day', 47, 0, 1),
(@ogid, 'Upcoming 7 days', 'starting.week', 'starting.week', 48, 0, 1),
(@ogid, 'Upcoming Month', 'starting.month', 'starting.month', 49, 0, 1),
(@ogid, 'Upcoming 12 Months', 'starting.year', 'starting.year', 50, 0, 1),
(@ogid, 'To End of Current Year', 'less.year', 'less.year', 51, 0, 1),
(@ogid, 'To End of Current Quarter', 'less.quarter', 'less.quarter', 52, 0, 1),
(@ogid, 'To End of Current Month', 'less.month', 'less.month', 53, 0, 1),
(@ogid, 'To End of Current Week', 'less.week', 'less.week', 54, 0, 1),
(@ogid, 'Next Week', 'next.week', 'next.week', 55, 0, 1),
(@ogid, 'Next Month', 'next.month', 'next.month', 56, 0, 1),
(@ogid, 'Next Quarter', 'next.quarter', 'next.quarter', 57, 0, 1),
(@ogid, 'Next Fiscal Year', 'next.fiscal_year', 'next.fiscal_year', 58, 0, 1),
(@ogid, 'Next Year', 'next.year', 'next.year', 59, 0, 1);
-- CRM-16195 add relative values ends

9 years agoCRM-16195 convert relative date search filters to an option value
Jon goldberg [Sun, 6 Sep 2015 22:44:54 +0000 (10:44 +1200)]
CRM-16195 convert relative date search filters to an option value

9 years agoMerge pull request #6694 from seamuslee001/CRM-14308
Dave Greenberg [Tue, 8 Sep 2015 19:47:52 +0000 (12:47 -0700)]
Merge pull request #6694 from seamuslee001/CRM-14308

CRM-14308 Allow for disabling of Smart Group Cache by setting smartGr…

9 years agoMerge pull request #6705 from pradpnayak/CRM-15187
Dave Greenberg [Tue, 8 Sep 2015 19:24:08 +0000 (12:24 -0700)]
Merge pull request #6705 from pradpnayak/CRM-15187

CRM-15187, added checks for financial type and amount

9 years agoMerge pull request #6360 from monishdeb/search-fixes-master
Kurund Jalmi [Tue, 8 Sep 2015 09:46:51 +0000 (15:16 +0530)]
Merge pull request #6360 from monishdeb/search-fixes-master

CRM-16941 - Search Form and api.Get fixes for Contact

9 years agoMerge pull request #6701 from eileenmcnaughton/master
Eileen McNaughton [Tue, 8 Sep 2015 05:46:48 +0000 (17:46 +1200)]
Merge pull request #6701 from eileenmcnaughton/master

enotice fix

9 years agoMerge pull request #6695 from yashodha/CRM-17166
Yashodha Chaku [Tue, 8 Sep 2015 03:38:39 +0000 (09:08 +0530)]
Merge pull request #6695 from yashodha/CRM-17166

CRM-17166: Multiple PCP contributions overflow box on Chrome

9 years agoenotice fix
eileenmcnaugton [Mon, 7 Sep 2015 13:09:06 +0000 (01:09 +1200)]
enotice fix

9 years agoMerge pull request #6696 from eileenmcnaughton/master
Eileen McNaughton [Mon, 7 Sep 2015 20:52:00 +0000 (08:52 +1200)]
Merge pull request #6696 from eileenmcnaughton/master

fix pass-by-reference

9 years agoCRM-15187, added checks for financial type and amount
Pradeep Nayak [Mon, 7 Sep 2015 19:19:44 +0000 (00:49 +0530)]
CRM-15187, added checks for financial type and amount

----------------------------------------
* CRM-15187: Accounting implications of Membership Type changes
  https://issues.civicrm.org/jira/browse/CRM-15187

9 years agofix pass-by-reference
eileenmcnaugton [Mon, 7 Sep 2015 11:36:17 +0000 (23:36 +1200)]
fix pass-by-reference

9 years agoMerge pull request #6689 from Stoob/patch-1
Yashodha Chaku [Mon, 7 Sep 2015 08:03:09 +0000 (13:33 +0530)]
Merge pull request #6689 from Stoob/patch-1

multiple contributions overflow box on Chrome

9 years agoCRM-17166: Multiple PCP contributions overflow box on Chrome
yashodha [Mon, 7 Sep 2015 06:13:20 +0000 (11:43 +0530)]
CRM-17166: Multiple PCP contributions overflow box on Chrome

----------------------------------------
* CRM-17166: Multiple PCP contributions overflow box on Chrome
  https://issues.civicrm.org/jira/browse/CRM-17166

9 years agoMerge pull request #6682 from monishdeb/CRM-17136
Yashodha Chaku [Mon, 7 Sep 2015 05:05:56 +0000 (10:35 +0530)]
Merge pull request #6682 from monishdeb/CRM-17136

Crm 17136 fix

9 years agoCRM-14308 Allow for disabling of Smart Group Cache by setting smartGroupCacheTimout...
Seamus Lee [Mon, 7 Sep 2015 00:52:44 +0000 (00:52 +0000)]
CRM-14308 Allow for disabling of Smart Group Cache by setting smartGroupCacheTimout to 0

9 years agomultiple contributions overflow box on Chrome
Stoob [Sun, 6 Sep 2015 03:31:08 +0000 (20:31 -0700)]
multiple contributions overflow box on Chrome

9 years agoMerge remote-tracking branch 'upstream/4.6' into 4.6-master-2015-09-05-18-12-52
Kurund Jalmi [Sun, 6 Sep 2015 01:13:05 +0000 (18:13 -0700)]
Merge remote-tracking branch 'upstream/4.6' into 4.6-master-2015-09-05-18-12-52

9 years agoremoved echo
Kurund Jalmi [Sun, 6 Sep 2015 01:11:41 +0000 (18:11 -0700)]
removed echo

9 years agoMerge remote-tracking branch 'upstream/4.6' into 4.6-master-2015-09-05-17-42-45
Kurund Jalmi [Sun, 6 Sep 2015 01:07:09 +0000 (18:07 -0700)]
Merge remote-tracking branch 'upstream/4.6' into 4.6-master-2015-09-05-17-42-45

Conflicts:
CRM/Case/BAO/Query.php
CRM/Member/Form/MembershipRenewal.php
CRM/Utils/Check/Security.php
sql/civicrm_generated.mysql
xml/templates/civicrm_country.tpl

9 years agoMerge pull request #6675 from nganivet/CRM-17149
Dave Greenberg [Sat, 5 Sep 2015 15:42:34 +0000 (08:42 -0700)]
Merge pull request #6675 from nganivet/CRM-17149

CRM-17149: full fix

9 years agoMerge pull request #6446 from colemanw/CRM-13160
Kurund Jalmi [Fri, 4 Sep 2015 21:46:07 +0000 (14:46 -0700)]
Merge pull request #6446 from colemanw/CRM-13160

CRM-13160 - Fix deleting relationshipType from MembershipType

9 years agoMerge pull request #6683 from kurund/CRM-16719
Kurund Jalmi [Fri, 4 Sep 2015 06:00:16 +0000 (23:00 -0700)]
Merge pull request #6683 from kurund/CRM-16719

CRM-16719: test fixes

9 years agotest fixes
Kurund Jalmi [Fri, 4 Sep 2015 05:53:47 +0000 (22:53 -0700)]
test fixes

9 years agoCRM-17136: Missing PK-PB Province
yashodha [Thu, 3 Sep 2015 07:37:12 +0000 (13:07 +0530)]
CRM-17136: Missing PK-PB Province

----------------------------------------
* CRM-17136: Missing PK-PB Province
  https://issues.civicrm.org/jira/browse/CRM-17136

9 years agoUpdate 4.7.alpha1.mysql.tpl
gah242s [Wed, 2 Sep 2015 13:18:30 +0000 (09:18 -0400)]
Update 4.7.alpha1.mysql.tpl

CRM-17136 Added Punjab Province for Pakistan
Conflicts:
CRM/Upgrade/Incremental/sql/4.7.alpha1.mysql.tpl

----------------------------------------
* CRM-17136: Missing PK-PB Province
  https://issues.civicrm.org/jira/browse/CRM-17136

9 years agoMerge pull request #6680 from colemanw/cleanup
colemanw [Fri, 4 Sep 2015 05:18:05 +0000 (22:18 -0700)]
Merge pull request #6680 from colemanw/cleanup

cleanup explodePadded

9 years agocleanup explodePadded
Coleman Watts [Fri, 4 Sep 2015 05:17:49 +0000 (22:17 -0700)]
cleanup explodePadded

9 years agoMerge pull request #6649 from jitendrapurohit/CRM-16514
Kurund Jalmi [Fri, 4 Sep 2015 04:53:42 +0000 (21:53 -0700)]
Merge pull request #6649 from jitendrapurohit/CRM-16514

CRM-16514 -- Scheduled reminder for event sends email repeatedly

9 years agoMerge pull request #6560 from kurund/CRM-16719-fix
Dave Greenberg [Fri, 4 Sep 2015 04:18:31 +0000 (21:18 -0700)]
Merge pull request #6560 from kurund/CRM-16719-fix

CRM-16719 fixes

9 years agoMerge pull request #6677 from eileenmcnaughton/CRM-17152
Eileen McNaughton [Fri, 4 Sep 2015 02:17:33 +0000 (14:17 +1200)]
Merge pull request #6677 from eileenmcnaughton/CRM-17152

CRM-17152 fix non-static method called statically

9 years agoMerge pull request #6679 from kurund/test-fixes
Kurund Jalmi [Fri, 4 Sep 2015 01:45:30 +0000 (18:45 -0700)]
Merge pull request #6679 from kurund/test-fixes

test fixes

9 years agotest fixes
Kurund Jalmi [Fri, 4 Sep 2015 01:43:48 +0000 (18:43 -0700)]
test fixes

9 years agocorrects style issue
Nicolas Ganivet [Fri, 4 Sep 2015 00:41:47 +0000 (18:41 -0600)]
corrects style issue

9 years agoCRM-17152 fix non-static method called statically
eileenmcnaugton [Thu, 3 Sep 2015 22:48:32 +0000 (10:48 +1200)]
CRM-17152 fix non-static method called statically

9 years agoMerge pull request #6668 from monishdeb/testFailures
Dave Greenberg [Thu, 3 Sep 2015 22:40:11 +0000 (15:40 -0700)]
Merge pull request #6668 from monishdeb/testFailures

CRM-17130 fix and refactor soft-credit post processing

9 years agoMerge pull request #6662 from mallezie/crm-17134
Dave Greenberg [Thu, 3 Sep 2015 22:11:02 +0000 (15:11 -0700)]
Merge pull request #6662 from mallezie/crm-17134

CRM-17134 Add softcontributions to contribution message template

9 years agoMerge pull request #6670 from eileenmcnaughton/comments-3
Eileen McNaughton [Thu, 3 Sep 2015 21:12:04 +0000 (09:12 +1200)]
Merge pull request #6670 from eileenmcnaughton/comments-3

Comments fixes

9 years agoMerge pull request #6671 from pradpnayak/CRM-17145
Dave Greenberg [Thu, 3 Sep 2015 20:45:22 +0000 (13:45 -0700)]
Merge pull request #6671 from pradpnayak/CRM-17145

--CRM-17145, fixed data type for civicrm_activity.details

9 years agoMerge pull request #6674 from lcdservices/CRM-17148
colemanw [Thu, 3 Sep 2015 19:19:56 +0000 (12:19 -0700)]
Merge pull request #6674 from lcdservices/CRM-17148

CRM-17148 set crm-initial-value for billingcheckbox

9 years agoCRM-17149: full fix
Nicolas Ganivet [Thu, 3 Sep 2015 17:57:13 +0000 (11:57 -0600)]
CRM-17149: full fix

9 years agoCRM-17148 set crm-initial-value for billingcheckbox
Brian Shaughnessy [Thu, 3 Sep 2015 17:12:10 +0000 (13:12 -0400)]
CRM-17148 set crm-initial-value for billingcheckbox

9 years ago--CRM-17145, fixed data type for civicrm_activity.details
Pradeep Nayak [Thu, 3 Sep 2015 08:54:02 +0000 (14:24 +0530)]
--CRM-17145, fixed data type for civicrm_activity.details

9 years agocomment fixes
eileenmcnaugton [Thu, 3 Sep 2015 08:38:35 +0000 (20:38 +1200)]
comment fixes

9 years agocomment fixes
eileenmcnaugton [Thu, 3 Sep 2015 08:33:47 +0000 (20:33 +1200)]
comment fixes

9 years agoMerge pull request #6658 from eileenmcnaughton/CRM-17120
Eileen McNaughton [Thu, 3 Sep 2015 08:20:33 +0000 (20:20 +1200)]
Merge pull request #6658 from eileenmcnaughton/CRM-17120

Crm 17120

9 years agoMerge pull request #6337 from jitendrapurohit/CRM-16792master
Monish Deb [Thu, 3 Sep 2015 08:02:51 +0000 (13:32 +0530)]
Merge pull request #6337 from jitendrapurohit/CRM-16792master

CRM-16792 - Report: Contrib Summary when soft credit stats and filter…

9 years agoMerge pull request #6601 from colemanw/CRM-16974
Eileen McNaughton [Thu, 3 Sep 2015 07:58:51 +0000 (19:58 +1200)]
Merge pull request #6601 from colemanw/CRM-16974

CRM-16974 - Disable amounts section of contribution page when enabling member price set

9 years agoformat fix
monishdeb [Thu, 3 Sep 2015 07:47:33 +0000 (13:17 +0530)]
format fix

9 years agoCRM-17130 fix and refactor soft-credit post processing
monishdeb [Thu, 3 Sep 2015 07:29:13 +0000 (12:59 +0530)]
CRM-17130 fix and refactor soft-credit post processing

----------------------------------------
* CRM-17130: Soft Credit Info Wiped When Recording Credit Card Contribution
  https://issues.civicrm.org/jira/browse/CRM-17130

9 years agoMerge pull request #6661 from yashodha/CRM-17132
Yashodha Chaku [Thu, 3 Sep 2015 05:23:00 +0000 (10:53 +0530)]
Merge pull request #6661 from yashodha/CRM-17132

CRM-17132: Cannot Find Contributions or Advanced Search by Personal C…

9 years agoMerge pull request #6644 from totten/4.6-sql-where
Tim Otten [Thu, 3 Sep 2015 01:44:57 +0000 (18:44 -0700)]
Merge pull request #6644 from totten/4.6-sql-where

CRM-16544, CRM-17127 - Select::where() - Less aggressive dedupe

9 years agoMerge pull request #6604 from eileenmcnaughton/4.6
Eileen McNaughton [Wed, 2 Sep 2015 23:14:21 +0000 (11:14 +1200)]
Merge pull request #6604 from eileenmcnaughton/4.6

CRM-17092 backport (do not merge) of fix to storing contribution_recu…

9 years agoMerge pull request #6620 from colemanw/CRM-17080
Eileen McNaughton [Wed, 2 Sep 2015 21:48:28 +0000 (09:48 +1200)]
Merge pull request #6620 from colemanw/CRM-17080

CRM-17080 - Smarty api cleanup

9 years agomark function as deprecated
eileenmcnaugton [Wed, 2 Sep 2015 20:10:57 +0000 (08:10 +1200)]
mark function as deprecated

9 years agoCRM-17120 swap out calls to getLabel to a cached one
eileenmcnaugton [Wed, 2 Sep 2015 04:10:37 +0000 (16:10 +1200)]
CRM-17120 swap out calls to getLabel to a cached one

This change is tested in the contribution BAO class

9 years agoMerge pull request #6664 from eileenmcnaughton/comments-3
Eileen McNaughton [Wed, 2 Sep 2015 19:57:34 +0000 (07:57 +1200)]
Merge pull request #6664 from eileenmcnaughton/comments-3

Comments 3

9 years agoMerge pull request #6628 from monishdeb/CRM-17090
Monish Deb [Wed, 2 Sep 2015 18:23:14 +0000 (23:53 +0530)]
Merge pull request #6628 from monishdeb/CRM-17090

CRM-17090 fix - Accounting batch filters broken

9 years agoMerge pull request #6659 from colemanw/CRM-17126
colemanw [Wed, 2 Sep 2015 15:28:29 +0000 (08:28 -0700)]
Merge pull request #6659 from colemanw/CRM-17126

CRM-17126 - Add js headers for contribution widget

9 years agocomment fixes
eileenmcnaugton [Wed, 2 Sep 2015 12:47:36 +0000 (00:47 +1200)]
comment fixes

9 years agocomment fixes
eileenmcnaugton [Wed, 2 Sep 2015 12:45:16 +0000 (00:45 +1200)]
comment fixes

9 years agoMerge pull request #6663 from eileenmcnaughton/comments-3
Eileen McNaughton [Wed, 2 Sep 2015 12:42:50 +0000 (00:42 +1200)]
Merge pull request #6663 from eileenmcnaughton/comments-3

comment fixes

9 years agocomment fixes
eileenmcnaugton [Wed, 2 Sep 2015 12:32:37 +0000 (00:32 +1200)]
comment fixes

jenkins seems to spit the dummy at these  but the issue appears to be php5.5 style code
which is fine here, rather than the change

9 years agoformat fix
yashodha [Wed, 2 Sep 2015 11:41:48 +0000 (17:11 +0530)]
format fix

9 years agoCRM-17134 Add softcontributions to contribution message template
Tim Mallezie [Wed, 2 Sep 2015 09:55:07 +0000 (11:55 +0200)]
CRM-17134 Add softcontributions to contribution message template

9 years agoCRM-17132: Cannot Find Contributions or Advanced Search by Personal Contribution...
yashodha [Wed, 2 Sep 2015 08:30:04 +0000 (14:00 +0530)]
CRM-17132: Cannot Find Contributions or Advanced Search by Personal Contribution Page

----------------------------------------
* CRM-17132: Cannot Find Contributions or Advanced Search by Personal Contribution Page
  https://issues.civicrm.org/jira/browse/CRM-17132

9 years agoMerge pull request #6655 from eileenmcnaughton/comments-3
Eileen McNaughton [Wed, 2 Sep 2015 08:19:18 +0000 (20:19 +1200)]
Merge pull request #6655 from eileenmcnaughton/comments-3

Comments fixes

9 years agominor fixes
Kurund Jalmi [Wed, 2 Sep 2015 07:32:19 +0000 (00:32 -0700)]
minor fixes

9 years agoMerge pull request #6657 from colemanw/CRM-17120
Eileen McNaughton [Wed, 2 Sep 2015 05:06:52 +0000 (17:06 +1200)]
Merge pull request #6657 from colemanw/CRM-17120

CRM-17120 - Use CRM_Core_Pseudoconstant to lookup option labels

9 years agoCRM-17120 - Use CRM_Core_Pseudoconstant to lookup option labels
Coleman Watts [Tue, 1 Sep 2015 23:58:04 +0000 (16:58 -0700)]
CRM-17120 - Use CRM_Core_Pseudoconstant to lookup option labels

9 years agoCRM-17120 enhance test to check honor contact output
eileenmcnaugton [Wed, 2 Sep 2015 04:08:06 +0000 (16:08 +1200)]
CRM-17120 enhance test to check honor contact output

9 years agominor comment fixes
eileenmcnaugton [Wed, 2 Sep 2015 04:07:24 +0000 (16:07 +1200)]
minor comment fixes

9 years agoCRM-17120 replace option label calls with cached function.
eileenmcnaugton [Wed, 2 Sep 2015 03:43:41 +0000 (15:43 +1200)]
CRM-17120 replace option label calls with cached function.

I added a test before swapping out the values. In the process I formed a few doubts about the
code. I couldn't find anyway to access the case_activity where parameters outside a
carefully crafted test and when I did so I got invalid sql & a minor error in the qill
I added comments about these findings & locked in the existing behaviour, keeping this
change very safe

9 years agoCRM-17126 - Add js headers for contribution widget
Coleman Watts [Wed, 2 Sep 2015 03:30:53 +0000 (20:30 -0700)]
CRM-17126 - Add js headers for contribution widget

9 years agoadded form rule to allow add to group action only if contact fields are selected
Kurund Jalmi [Wed, 2 Sep 2015 03:30:17 +0000 (20:30 -0700)]
added form rule to allow add to group action only if contact fields are selected

9 years agoremove unused parameter
eileenmcnaugton [Wed, 2 Sep 2015 03:23:07 +0000 (15:23 +1200)]
remove unused parameter

9 years agoComment fixes
eileenmcnaugton [Wed, 2 Sep 2015 03:22:52 +0000 (15:22 +1200)]
Comment fixes

9 years agoCRM-17120 remove call to uncached getLabel function
eileenmcnaugton [Wed, 2 Sep 2015 01:10:51 +0000 (13:10 +1200)]
CRM-17120 remove call to uncached getLabel function

9 years agocomment fixes
eileenmcnaugton [Wed, 2 Sep 2015 02:33:38 +0000 (14:33 +1200)]
comment fixes

9 years agobackport formatting from master to sync up before starting
eileenmcnaugton [Wed, 2 Sep 2015 00:43:06 +0000 (12:43 +1200)]
backport formatting from master to sync up before starting

9 years agofixed merge conflicts
Kurund Jalmi [Tue, 1 Sep 2015 23:53:25 +0000 (16:53 -0700)]
fixed merge conflicts

9 years agoMerge pull request #6343 from pradpnayak/CRM-16506
Dave Greenberg [Tue, 1 Sep 2015 23:10:19 +0000 (16:10 -0700)]
Merge pull request #6343 from pradpnayak/CRM-16506

CRM-16506, Fixed and improve mailing stats

9 years agoMerge pull request #6643 from davecivicrm/CRM-17031
Dave Greenberg [Tue, 1 Sep 2015 23:01:57 +0000 (16:01 -0700)]
Merge pull request #6643 from davecivicrm/CRM-17031

CRM-17031 - improve offline event receipts for new installs

9 years agoMerge pull request #6646 from eileenmcnaughton/comments-3
Eileen McNaughton [Tue, 1 Sep 2015 20:42:39 +0000 (08:42 +1200)]
Merge pull request #6646 from eileenmcnaughton/comments-3

Comments fixes

9 years agoMerge pull request #6647 from eileenmcnaughton/test-fix
Eileen McNaughton [Tue, 1 Sep 2015 20:40:54 +0000 (08:40 +1200)]
Merge pull request #6647 from eileenmcnaughton/test-fix

test-fix, pass through whether the form is in test mode

9 years agoMerge pull request #6651 from monishdeb/testFailures
Monish Deb [Tue, 1 Sep 2015 12:42:13 +0000 (18:12 +0530)]
Merge pull request #6651 from monishdeb/testFailures

Qill fix participant.is_test

9 years agoCRM-17121 fix - Advanced Search on Event Type OR Address returns only Event results
monishdeb [Tue, 1 Sep 2015 12:39:40 +0000 (18:09 +0530)]
CRM-17121 fix - Advanced Search on Event Type OR Address returns only Event results

https://issues.civicrm.org/jira/browse/CRM-17121

9 years agoCRM-16514 -- Scheduled reminder for event sends email repeatedly
jitendrapurohit [Tue, 1 Sep 2015 10:38:58 +0000 (16:08 +0530)]
CRM-16514 -- Scheduled reminder for event sends email repeatedly

9 years agoMerge pull request #6639 from kurund/comment-cleanup
Kurund Jalmi [Tue, 1 Sep 2015 05:57:21 +0000 (22:57 -0700)]
Merge pull request #6639 from kurund/comment-cleanup

style fixes

9 years agoMerge pull request #6634 from monishdeb/CRM-17073
Monish Deb [Tue, 1 Sep 2015 05:41:36 +0000 (11:11 +0530)]
Merge pull request #6634 from monishdeb/CRM-17073

CRM-17073 fix - Merge Household Members Into Their Household on Export

9 years agocomment fixes
eileenmcnaugton [Tue, 1 Sep 2015 05:13:13 +0000 (17:13 +1200)]
comment fixes

9 years agotest-fix, pass through whether the form is in test mode
eileenmcnaugton [Tue, 1 Sep 2015 05:01:28 +0000 (17:01 +1200)]
test-fix, pass through whether the form is in test mode

9 years agoMerge pull request #6645 from lcdservices/CRM-17122
Dave Greenberg [Tue, 1 Sep 2015 03:42:02 +0000 (20:42 -0700)]
Merge pull request #6645 from lcdservices/CRM-17122

CRM-17122: fix button label text in merge interface

9 years agocomment fixes
eileenmcnaugton [Mon, 31 Aug 2015 12:31:59 +0000 (00:31 +1200)]
comment fixes

9 years agomore comment fixes
eileenmcnaugton [Mon, 31 Aug 2015 12:04:52 +0000 (00:04 +1200)]
more comment fixes

9 years agoMerge pull request #6640 from eileenmcnaughton/comments-3
Eileen McNaughton [Tue, 1 Sep 2015 02:32:30 +0000 (14:32 +1200)]
Merge pull request #6640 from eileenmcnaughton/comments-3

Unrelated fails I think

9 years agoCRM-17122: fix button label text in merge interface
Brian Shaughnessy [Tue, 1 Sep 2015 02:14:06 +0000 (22:14 -0400)]
CRM-17122: fix button label text in merge interface

9 years agoMerge pull request #6531 from samuelsov/CRM-16561-bis
Kurund Jalmi [Tue, 1 Sep 2015 01:08:57 +0000 (18:08 -0700)]
Merge pull request #6531 from samuelsov/CRM-16561-bis

CRM-16561 - translatable tax invoice template (with upgrade)

9 years agoCRM-17031 - improve offline event receipts for new installs.
Dave Greenberg [Tue, 1 Sep 2015 01:01:23 +0000 (18:01 -0700)]
CRM-17031 - improve offline event receipts for new installs.

----------------------------------------
* CRM-17031: Improvement to offline Event Confirmation template
  https://issues.civicrm.org/jira/browse/CRM-17031