From a3b49b1566ab602d273795cbb36f17cbdcfd8ee9 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Tue, 13 Apr 2010 02:28:13 +0000 Subject: [PATCH] MINOR: fixed typos in the comments (from r98201) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102625 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"'