Skip to content
Snippets Groups Projects
Unverified Commit e5ebe87d authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #15804 from eileenmcnaughton/fns

#1381 fix fatal on case search (unreleased regression
parents 0e23d489 f8fe52e0
No related branches found
No related tags found
No related merge requests found
......@@ -457,6 +457,27 @@ class CRM_Core_Form_Search extends CRM_Core_Form {
}
/**
* Get the label for the group field.
*
* @return string
*/
protected function getGroupLabel() {
return ts('Group(s)');
}
/**
* Get the label for the tag field.
*
* We do this in a function so the 'ts' wraps the whole string to allow
* better translation.
*
* @return string
*/
protected function getTagLabel() {
return ts('Tag(s)');
}
/**
* we allow the controller to set force/reset externally, useful when we are being
* driven by the wizard framework
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment