From 9796265e7cfb53e63e69ffbc848f2a435621602d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gra=C3=9Fl?= Date: Sun, 8 Jan 2012 15:03:00 +0100 Subject: [PATCH] Use SS_Datetime instead of Datetime. Allows the usage of Object::useCustomClass('SS_Datetime', 'LocalDatetime'); --- code/BlogEntry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/BlogEntry.php b/code/BlogEntry.php index b81ab42..b4138b5 100644 --- a/code/BlogEntry.php +++ b/code/BlogEntry.php @@ -6,7 +6,7 @@ */ class BlogEntry extends Page { static $db = array( - "Date" => "Datetime", + "Date" => "SS_Datetime", "Author" => "Text", "Tags" => "Text" );