As to the error in search displayFmt I reported:
function BOLTdisplayFmt needs a change to:
..................
foreach((array)$outarray as $item) {
$item = trim($item);
if ($item === '') continue;
$fmt2 = $fmt;
$p = explode('.', $item);
$fmt2 = str_replace('{+p0}', count($p), $fmt2);
$fmt2 = str_replace('{+p}', BOLTurl2utf($item), $fmt2);
foreach ($p as $i => $ii) {
............... etc
1. The (array) declaration sets the var as array so foreach will not
report an error if an empty var is supplied (due to an empty search)
2. BOLTurl2utf($item) is needed to deliver proper {=p} values.
I suggested a simple urldecode for this before, but BOLTurl2utf may be fine.
~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
-~----------~----~----~----~------~----~------~--~---