I am trying to get the number of months between two dates in my xslt file like so:
<xsl:variable name="now" select="umbraco.library:CurrentDate()"/>
<xsl:value-of select="umbraco.library:DateDiff('2010-12-01', $now, 'm')" />
Unfortunately, this seems to give me the number of minutes between the two dates rather than the number of months. I can't find anywhere the string to enter as the third parameter for months. Is there are reference for this somewhere? Or how do I find the number of months?