Skip to content

Commit b6cdbda

Browse files
authored
Merge pull request #800 from skaut/version-2.10.3
Version 2.10.3
2 parents 064d0b6 + cf8d083 commit b6cdbda

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"phpmd/phpmd": "^2.6",
5353
"phan/phan": "^4.0",
5454
"phpunit/phpunit": "^7.5",
55-
"skaut/phan-wordpress-stubs": "^1.0.0"
55+
"skaut/phan-wordpress-stubs": "^1.0.0",
56+
"symfony/polyfill-mbstring": "^1.20.0 <1.22"
5657
}
5758
}

composer.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,6 @@ gulp.task( 'build:deps:composer:other', function () {
284284
'vendor/symfony/polyfill-intl-idn/bootstrap.php',
285285
'vendor/symfony/polyfill-intl-idn/Idn.php',
286286
'vendor/symfony/polyfill-mbstring/bootstrap.php',
287-
'vendor/symfony/polyfill-mbstring/bootstrap80.php',
288287
'vendor/symfony/polyfill-mbstring/Mbstring.php',
289288
],
290289
{ base: 'vendor/' }

src/php/class-api-facade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ private static function list_files( $parent_id, $fields, $order_by, $pagination_
236236
throw new \Sgdg\Exceptions\Unsupported_Value_Exception( $fields, 'list_files' );
237237
}
238238
if ( $fields->check( array( 'id', 'name' ) ) ) {
239-
$mime_type_check = '(mimeType contains "' . $mime_type_prefix . '" or (mimeType = "application/vnd.google-apps.shortcut" and shortcutDetails.targetMimeType contains "' . $mime_type_prefix . '"))';
239+
$mime_type_check = '(mimeType contains "' . $mime_type_prefix . '" or (mimeType contains "application/vnd.google-apps.shortcut" and shortcutDetails.targetMimeType contains "' . $mime_type_prefix . '"))';
240240
} else {
241241
$mime_type_check = 'mimeType contains "' . $mime_type_prefix . '"';
242242
}

0 commit comments

Comments
 (0)