Get rid of potential warning on early use of date()

This commit is contained in:
Andrew McMillan 2012-03-22 15:00:29 +13:00
parent 739d024305
commit f68823a5b2

View File

@ -62,7 +62,7 @@ $c->images = $c->base_url . '/images';
$c->template_usr = array( 'active' => true,
'locale' => 'en_GB',
'date_format_type' => 'E',
'email_ok' => date('Y-m-d')
'email_ok' => @date('Y-m-d')
);
$c->hide_TODO = true; // VTODO only visible to collection owner