You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'post__in' => ! empty( $payload['results'] ) ? $payload['results'] : [ 'no_results' ], // We use 'no_results' as a special value to indicate that the facet has no results.
61
-
'fields' => 'ids',
60
+
'post__in' => ! empty( $payload['results'] ) ? $payload['results'] : [ 'no_results' ], // We use 'no_results' as a special value to indicate that the facet has no results.
61
+
'fields' => 'ids',
62
+
'__fwp_payload' => $payload,
62
63
];
63
64
}
64
65
@@ -77,6 +78,10 @@ public static function filter_connection_query( $query, AbstractConnectionResolv
77
78
78
79
$query_args = $resolver->get_query_args();
79
80
81
+
/**
82
+
* Store the payload on the query object so that it can be accessed in the connection.
Copy file name to clipboardexpand all lines: vendor/autoload.php
-18
Original file line number
Diff line number
Diff line change
@@ -2,24 +2,6 @@
2
2
3
3
// autoload.php @generated by Composer
4
4
5
-
if (PHP_VERSION_ID < 50600) {
6
-
if (!headers_sent()) {
7
-
header('HTTP/1.1 500 Internal Server Error');
8
-
}
9
-
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
10
-
if (!ini_get('display_errors')) {
11
-
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
@@ -257,7 +255,7 @@ public static function getRootPackage()
257
255
*
258
256
* @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
0 commit comments