Update gnuboard.dbt.php

This commit is contained in:
Namhyeon Go 2018-05-27 19:13:58 +09:00 committed by GitHub
parent 5c9bbb6194
commit 66c2b9797c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -275,7 +275,7 @@ if(!function_exists("gnb_join_member")) {
if(!function_exists("gnb_make_pipelined_data")) {
function gnb_make_pipelined_data($data, $delimiter="|") {
foreach($data as $k=>$v) {
$data[$k] = str_replace("|", "", $v);
$data[$k] = str_replace($delimiter, " ", $v);
}
return implode($delimiter, $data);
}