Skip to content

Commit

Permalink
Fix argument order of imlode. Closes #26
Browse files Browse the repository at this point in the history
  • Loading branch information
richardhj authored Nov 24, 2021
1 parent a758742 commit 6bb7374
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/GridClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public static function addClassesToLabels($arrRow, $return) {
}
}

$grid .= implode(deserialize($arrGridClasses), ", ");
$grid .= implode(", ", deserialize($arrGridClasses));

if($arrRow['grid_options'] != "" ) {
$grid .= ", ";
Expand Down Expand Up @@ -146,7 +146,7 @@ public static function addClassesToLabels($arrRow, $return) {
}
}

$grid .= implode(deserialize($arrGridClasses), ", ");
$grid .= implode(", ", deserialize($arrGridClasses));
}

// close classes
Expand Down

0 comments on commit 6bb7374

Please sign in to comment.