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:
623246f
)
CRM-17693 Increase default string table size to be 255. 255 Characters seems fairly...
author
Seamus Lee
<seamuslee001@gmail.com>
Fri, 11 Dec 2015 07:58:08 +0000
(07:58 +0000)
committer
Seamus Lee
<seamuslee001@gmail.com>
Fri, 11 Dec 2015 07:58:08 +0000
(07:58 +0000)
CRM/Export/BAO/Export.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Export/BAO/Export.php
b/CRM/Export/BAO/Export.php
index 44e150f1722bc6fa05312e2a9778c90da4638dc1..7ce5e0a555d53a145e6f406507209d4603ecf2ee 100644
(file)
--- a/
CRM/Export/BAO/Export.php
+++ b/
CRM/Export/BAO/Export.php
@@
-1390,7
+1390,7
@@
INSERT INTO {$componentTable} SELECT distinct gc.contact_id FROM civicrm_group_c
$sqlColumns[$fieldName] = "$fieldName varchar({$query->_fields[$field]['maxlength']})";
}
else {
- $sqlColumns[$fieldName] = "$fieldName varchar(
64
)";
+ $sqlColumns[$fieldName] = "$fieldName varchar(
255
)";
}
break;