From 4fbc5572d627112dec228aa52a3cbaf78a637f43 Mon Sep 17 00:00:00 2001 From: Andreas Piening Date: Thu, 4 Feb 2010 04:54:17 +0000 Subject: [PATCH] MINOR: fixed typos in the comments git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@98201 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/model/MySQLDatabase.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/model/MySQLDatabase.php b/core/model/MySQLDatabase.php index 27ea83243..910edc933 100755 --- a/core/model/MySQLDatabase.php +++ b/core/model/MySQLDatabase.php @@ -942,7 +942,7 @@ class MySQLDatabase extends SS_Database { } /** - * Function to return an SQL datetime expression that can be used with SQLite3 + * Function to return an SQL datetime expression that can be used with MySQL * used for querying a datetime in a certain format * @param string $date to be formated, can be either 'now', literal datetime like '1973-10-14 10:30:00' or field name, e.g. '"SiteTree"."Created"' * @param string $format to be used, supported specifiers: @@ -973,7 +973,7 @@ class MySQLDatabase extends SS_Database { } /** - * Function to return an SQL datetime expression that can be used with SQLite3 + * Function to return an SQL datetime expression that can be used with MySQL * used for querying a datetime addition * @param string $date, can be either 'now', literal datetime like '1973-10-14 10:30:00' or field name, e.g. '"SiteTree"."Created"' * @param string $interval to be added, use the format [sign][integer] [qualifier], e.g. -1 Day, +15 minutes, +1 YEAR @@ -1001,7 +1001,7 @@ class MySQLDatabase extends SS_Database { } /** - * Function to return an SQL datetime expression that can be used with SQLite3 + * Function to return an SQL datetime expression that can be used with MySQL * used for querying a datetime substraction * @param string $date1, can be either 'now', literal datetime like '1973-10-14 10:30:00' or field name, e.g. '"SiteTree"."Created"' * @param string $date2 to be substracted of $date1, can be either 'now', literal datetime like '1973-10-14 10:30:00' or field name, e.g. '"SiteTree"."Created"'