Issue #3313342 by Rajeshreeputra, idimopoulos, claudiu.cristea, deepakkm, saidatom, afsch, xjm, Bhanu951: [PHP 8.1] Deprecated function: strpos(): Passing null to parameter #1 LayoutBuilderUiCacheContext.php on line 28
parent
56913d2ad2
commit
341af8bf30
|
@ -25,7 +25,11 @@ class LayoutBuilderUiCacheContext extends RouteNameCacheContext {
|
|||
* {@inheritdoc}
|
||||
*/
|
||||
public function getContext() {
|
||||
return 'is_layout_builder_ui.' . (int) !str_starts_with($this->routeMatch->getRouteName(), 'layout_builder.');
|
||||
$route_name = $this->routeMatch->getRouteName();
|
||||
if ($route_name && str_starts_with($route_name, 'layout_builder.')) {
|
||||
return 'is_layout_builder_ui.0';
|
||||
}
|
||||
return 'is_layout_builder_ui.1';
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue