> <<list filter [tag[systemConfig]] [sort[+created]]>> > <<list filter [tag[systemConfig]] [sort[-created]]>> > <<list filter [tag[systemConfig]] [sort[+modified]]>> > <<list filter [tag[systemConfig]] [sort[-modified]]>> > And the sorting isn't working. Anyone know what I am doing wrong?
The filter criteria must be one parameter, but you've got a space in the middle, which makes the criteria "[tag[systemConfig]]" and leaves "[sort[...]]" as an ignored parameter. Either A) remove the space: <<list filter [tag[systemConfig]][sort[-modified]]>> or B) enclose the criteria in quotes: <<list filter "[tag[systemConfig]] [sort[-modified]]">> enjoy, -e --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWiki" 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/tiddlywiki?hl=en -~----------~----~----~----~------~----~------~--~---

