diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index ffc549cb70..1eb3970ca1 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -703,7 +703,7 @@ class wpdb { * * @see wpdb::$incompatible_modes * - * @param array $incompatible_modes An array of incompatible modes + * @param array $incompatible_modes An array of incompatible modes. */ $incompatible_modes = (array) apply_filters( 'incompatible_sql_modes', $this->incompatible_modes ); @@ -1338,9 +1338,11 @@ class wpdb { /** * Filter the database query. * - * Some queries are made before the plugins have been loaded, and thus cannot be filtered with this method. + * Some queries are made before the plugins have been loaded, + * and thus cannot be filtered with this method. * * @since 2.1.0 + * * @param string $query Database query. */ $query = apply_filters( 'query', $query );