Get user/visitor registered date in template variables

Hi there

I'd like to get a visitor's registered date for use in an evaluation (if date > X) for example. I've tried a search here and found plenty of advice about handling dates in PHP, but not the templates.
 
The register date is available on the visitor record in templates as:
Code:
{$visitor.register_date}

The condition would look something like this:
Code:
<xen:if is="{$visitor.register_date} > X">
    // Do something
</xen:if>
 
Top Bottom