Skip to content

Commit

Permalink
Setting GROUP_CONCAT_MAX_LEN to 10240 in system plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
cheesegrits committed Apr 27, 2014
1 parent bec64e5 commit df59c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/system/fabrik/fabrik.php
Expand Up @@ -84,7 +84,7 @@ protected function setBigSelects()
$db = JFactory::getDbo();
if ($bigSelects)
{
$db->setQuery("SET OPTION SQL_BIG_SELECTS=1");
$db->setQuery("SET OPTION SQL_BIG_SELECTS=1, GROUP_CONCAT_MAX_LEN=10240");
$db->execute();
}
}
Expand Down

0 comments on commit df59c0d

Please sign in to comment.