Skip to content

Commit

Permalink
release 2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzegit committed Dec 31, 2021
1 parent 85b794a commit 828c64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/libs/strings.helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function string_explode_list($string_list, $index_as_value = false) {
if (mb_strpos($row, '|')) {
list($index, $value) = explode('|', trim($row));
} else {
$index = string($index_as_value ? $row : ($count + 1));
$index = (string)($index_as_value ? $row : ($count + 1));
$value = $row;
}
$items[trim($index)] = trim($value);
Expand Down

0 comments on commit 828c64c

Please sign in to comment.