I forgot:
9. function BOLTdisplayFmt replace foreach block
foreach($outarray as $item) {
.........
}
with
foreach((array)$outarray as $item) {
$item = trim($item);
if ($item === '') continue;
$fmt2 = $fmt;
$p = explode('.', $item);
$fmt2 = str_replace('{+p0}', count($p), $fmt2);
$item = urldecode($item);
$fmt2 = str_replace('{+p}', $item, $fmt2);
foreach ($p as $i => $ii) {
$check = '{+p' . ($i + 1) . '}';
$iii = urldecode($ii);
$fmt2 = str_replace('{+p' . ($i + 1) . '}', $iii,
$fmt2);
}
$fmt2 = preg_replace('/\{\+p[0-9]{1}\}/', '', $fmt2);
$out .= $fmt2 . $join;
}
10. function BOLTdisplayTemplate replace all occurences of BOLTurl2utf
with urldecode
~Hans
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"BoltWire" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/boltwire?hl=en
-~----------~----~----~----~------~----~------~--~---