projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ee3253
)
ProfileBuilder - fix undefined var error
author
Coleman Watts
<coleman@civicrm.org>
Tue, 8 Apr 2014 14:43:59 +0000
(10:43 -0400)
committer
Coleman Watts
<coleman@civicrm.org>
Tue, 8 Apr 2014 14:43:59 +0000
(10:43 -0400)
js/model/crm.uf.js
patch
|
blob
|
blame
|
history
diff --git
a/js/model/crm.uf.js
b/js/model/crm.uf.js
index c5c2563e388a6490128c1d7514cc600fb8c5348b..ca9fdd255d00bdc7c09c6b117f49773155ff8416 100644
(file)
--- a/
js/model/crm.uf.js
+++ b/
js/model/crm.uf.js
@@
-686,7
+686,7
@@
// set proper entity model based on selected profile
var contactTypes = ['Individual', 'Household', 'Organization'];
- var profileType = ufGroupModel.get('group_type');
+ var profileType = ufGroupModel.get('group_type')
|| ''
;
profileType = profileType.split(',');
var ufEntityModel;
_.each(profileType, function (ptype) {