-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: patch views for compatibility with PHP 8.2
Refs: ODSG-45
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/core/modules/views/src/Plugin/views/query/QueryPluginBase.php b/core/modules/views/src/Plugin/views/query/QueryPluginBase.php | ||
index 1e0740fc9d..15f8d4fc9f 100644 | ||
--- a/core/modules/views/src/Plugin/views/query/QueryPluginBase.php | ||
+++ b/core/modules/views/src/Plugin/views/query/QueryPluginBase.php | ||
@@ -59,6 +59,20 @@ abstract class QueryPluginBase extends PluginBase implements CacheableDependency | ||
*/ | ||
protected $groupOperator; | ||
|
||
+ /** | ||
+ * WHERE groups. | ||
+ * | ||
+ * @var array | ||
+ */ | ||
+ protected $where; | ||
+ | ||
+ /** | ||
+ * HAVING groups. | ||
+ * | ||
+ * @var array | ||
+ */ | ||
+ protected $having; | ||
+ | ||
/** | ||
* Generate a query and a countquery from all of the information supplied. | ||
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters