> In TW version 2.6.0, if you use the TaggerPlugin to change the tags of
> a tiddler, that tiddler's custom fields (and their contents) will
> disappear without a trace.  You can test this here:
>
> http://dl.dropbox.com/u/5687735/taggertest.html

in the onToggleTag() function, you can add a parameter to the
saveTiddler() call, by changing this:

store.saveTiddler(tiddler.title,tiddler.title,tiddler.text,tiddler.modifier,tiddler.modified,tiddler.tags);

to

store.saveTiddler(tiddler.title,tiddler.title,tiddler.text,tiddler.modifier,tiddler.modified,tiddler.tags,tiddler.fields);

i.e., pass the *existing* fields object (if any), when saving the
tiddler.

That should do it.

enjoy,
-e


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to