mirror of
https://github.com/e107inc/e107.git
synced 2025-02-24 16:52:43 +01:00
17 lines
232 B
Python
Executable File
17 lines
232 B
Python
Executable File
global $$parm;
|
|
$bc = $$parm;
|
|
$flist = explode(",", $bc['fieldlist']);
|
|
$ret = "";
|
|
foreach($flist as $f)
|
|
{
|
|
if($bc[$f]['value'])
|
|
{
|
|
$ret .= $bc[$f]['value'];
|
|
if($bc[$f]['sep'])
|
|
{
|
|
$ret .= $bc[$f]['sep'];
|
|
}
|
|
}
|
|
}
|
|
|
|
return $ret; |