I visited this thread before posting here: HERE
This problem persists, exactly as above, with 7.1.5, and the template being used does NOT change anything (therefore not being affected by 3rd party .css) as it happens with untouched default templates.
On my multi-select checkboxes, Im getting:
country
pop-rock
r&b
variety
dance and DJ
etc...
BxBaseFormView.php:
if (isset($aInput['values']) and is_array($aInput['values'])) {
if (count($aInput['values']) > 3 && $sDivider == ' ') <--This number 'changed' has ZERO affect on the display.
$sDivider = '<br />'; <---changed to '----' (for testing purposes)
Now getting, and on a single line:
Preferred Music: |
country ---- pop-rock ---- R&B ---- variety ---- dance and DJ ----etc...
|
So.. for what ever reason, the problem lies in the fact that its not waiting for every 3rd line, its placing $sDivider directly after EVERY item.
And that's why its showing everything in a single column, because $sDivider is placing '<br />' after EACH item.
Can someone PLEASE weigh in here?