Back to PhocacartUtils class

Method setConcatCharCount

public static
setConcatCharCount
(mixed $count = 16384)

Method setConcatCharCount - Source code

public static function setConcatCharCount($count = 16384)
{
    $db = Factory::getDBO();
    $db->setQuery("SET @@group_concat_max_len = " . (int) $count);
    $db->execute();
}