I want to use Url helper in my action, so I use
sfLoader::loadHelpers(array('Url'));
However, if I just include the 'Url', link_to function will not work. It looks like it depends on the function in 'Tag' helper, so it can be easily fixed by:
sfLoader::loadHelpers(array('Tag','Url'));
It's not really a big problem, but maybe 'Url' helper should include 'Tag' automatically, since it depends on it? Or maybe function:
_parse_attributes() (that's the missing function that 'Url' is using)
should be extracted to the common library, or duplicated in 'Url'?
I'm using latest symfony1.2 from SVN, revision: 12718.
cheers,
Tomek