At the moment the system gets confused if I call the same plugin within itself. I wanted to do this in the yui plugin, eg.
{exp:yui:load:tabs ....}
{tab}
....
{exp:yui:load:calendar ..}{/exp:yui:load}
{/tab}
{tab}
...
etc.
{/tab}
{/exp:yui:load}
Looking at core.template.php it is searching for the first instance of the closing tag. I changed it to look for the last instance and it seems to work, but it may break something else! Be good to be able to nest plugins.
Code changed on line 690 to use strrpos instead of strpos:
$out_point = strrpos($this->fl_tmpl, $cur_tag_close);
[Mod edit: Moved to plugin support forum as this feature already exists]
