diff --git a/pg4wp/driver_pgsql.php b/pg4wp/driver_pgsql.php index 4809e9d..9189a6a 100644 --- a/pg4wp/driver_pgsql.php +++ b/pg4wp/driver_pgsql.php @@ -125,8 +125,6 @@ $sql = preg_replace($pattern, 'LIMIT $2 OFFSET $1', $sql); $sql = str_replace('INTERVAL 120 MINUTE', "'120 minutes'::interval", $sql); - // The following handles a new "INTERVAL" call in Akismet 2.2.7 - $sql = str_replace('INTERVAL 15 DAY', "'15 days'::interval", $sql); $pattern = '/DATE_ADD[ ]*\(([^,]+),([^\)]+)\)/'; $sql = preg_replace( $pattern, '($1 + $2)', $sql); @@ -257,6 +255,9 @@ elseif( defined('WP_INSTALLING') && WP_INSTALLING) $sql = pg4wp_installing( $sql, $logto); + // The following handles a new "INTERVAL" call in Akismet 2.2.7 + $sql = str_replace('INTERVAL 15 DAY', "'15 days'::interval", $sql); + // Field names with CAPITALS need special handling if( false !== strpos($sql, 'ID')) {