I do not know if there is a way to retrieve the values without fields
from info.tags and make a unique list.

This would be useful to have something like a "tag suggest".

If not, I helped myself with this litte addition to infotags.php:

function BOLTinfoTagList($info, $args) {
        $tags = array();
        foreach ($info as $f => $v) $tags = array_merge($tags, explode(' ',
$v));
        $result = array_unique($tags);
        $out = implode(' ',$result);
        return $out;
        }

and in action.tags: [(info taglist)]

This could be enhanced with a javascript that allows to pick a value
with double click into the edit tags form.

Greetings, Martin
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to