Deprecated function: preg_quote(): Passing null to parameter #1 ($str)

Created on 16 December 2022, over 2 years ago
Updated 25 May 2023, almost 2 years ago

Problem/Motivation

Deprecated function: preg_quote(): Passing null to parameter #1 ($str) of type string is deprecated in Drupal\Core\Path\PathMatcher->matchPath() (line 82 of core/lib/Drupal/Core/Path/PathMatcher.php). I

Steps to reproduce

I get this o n every site page since today's update to 9.5.0 (but have not looked lately)

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

Release notes snippet

๐Ÿ› Bug report
Status

Active

Version

10.0 โœจ

Component
Baseย  โ†’

Last updated about 4 hours ago

Created by

๐Ÿ‡บ๐Ÿ‡ธUnited States tjtj

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia sourav_paul Kolkata

    I also getting the same issue in Drupal 10.0.8.

  • Assigned to PrabuEla
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia PrabuEla chennai

    Hi @All,

    I am not sure this patch will resolve the issue.
    The issue is because of passing empty string in preg_quote()

  • Issue was unassigned.
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia PrabuEla chennai
  • Status changed to Postponed: needs info almost 2 years ago
  • ๐Ÿ‡ซ๐Ÿ‡ทFrance aurbain
  • ๐Ÿ‡ซ๐Ÿ‡ทFrance aurbain
  • last update over 1 year ago
    Custom Commands Failed
  • last update over 1 year ago
    Custom Commands Failed
  • last update over 1 year ago
    Custom Commands Failed
  • ๐Ÿ‡จ๐Ÿ‡ญSwitzerland sir_squall

    Hi,

    i just tested the patch for 10.2.0 and 10.2.1 and it's working weel.

    Thanks

  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands diddism

    Patch doesn't work if system.site page.front is null. I don't know what lead to the circumstance it was null in my case, i suspect config_filter/config_ignore, but it was. Solved it by doing drush cset system.site page.front /node

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    This issue is filed against a component that has been removed from Drupal core a long time ago and thus is not seen by the community. I am changing the component.

    Steps to reproduce were asked for 2 years ago and they have not been supplied. What is needed is how to recreated the problem from a fresh install of Drupal 10 or 11.

    Since we need more information to move forward with this issue, I am keeping the status at Postponed (maintainer needs more info). If we don't receive additional information to help with the issue, it may be closed after three months.

    Thanks!

  • ๐Ÿ‡จ๐Ÿ‡ญSwitzerland sir_squall

    I still got this error, when we are using the :
    $node = \Drupal::routeMatch()->getParameter('node');

    in this hook:
    _preprocess_html(&$variables) {

    we have this preg_quote error

  • ๐Ÿ‡ฒ๐Ÿ‡ฆMorocco b.khouy ๐Ÿ‡ฒ๐Ÿ‡ฆ Morocco

    This issue stems from the use of $this->getFrontPagePath() as the first parameter of the preg_quote() function in web/core/lib/Drupal/Core/Path/PathMatcher::matchPath method. We need to ensure that the first argument is always a string. In the attached patch, Iโ€™ve added a check to validate the returned value accordingly

  • ๐Ÿ‡ฒ๐Ÿ‡ฆMorocco b.khouy ๐Ÿ‡ฒ๐Ÿ‡ฆ Morocco
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Fixes should be in MRs

    Issue summary should be updated with reliable steps to reproduce (moving to PNMI for that)

    Also rest of sections should be filled in

    Possibly will need test coverage.

  • ๐Ÿ‡จ๐Ÿ‡ญSwitzerland sir_squall

    I just tried the patch in #21 and it's working well

  • @sir_squall: This issue needs to be updated as specified in comment 23. Anything you can do on that end will help this to be solved.

  • ๐Ÿ‡จ๐Ÿ‡ญSwitzerland sir_squall

    I found another thread with a Similar issue:
    https://www.drupal.org/project/domain/issues/3295160 โ†’

    I don't know how to do the MRs..

  • Thatโ€™s ok. There are other issue updates needed besides code.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States kevinquillen

    I was able to trigger this in a simple kernel test where I want to check that some custom entity routes are marked as admin.

    
    /**
     * Tests the EntityAdminHtmlRouteProvider.
     */
    class EntityAdminHtmlRouteProviderTest extends KernelTestBase {
    
      /**
       * {@inheritdoc}
       */
      protected static $modules = [
        'cci_api',
        'cci_card',
        'domain',
        'node',
        'text',
        'user',
        'system',
      ];
    
      /**
       * The entity type manager service.
       *
       * @var \Drupal\Core\Entity\EntityTypeManagerInterface
       */
      protected EntityTypeManagerInterface $entityTypeManager;
    
      /**
       * @var \Drupal\Core\Routing\AccessAwareRouter
       */
      protected AccessAwareRouter $router;
    
      /**
       * @var \Drupal\Core\ProxyClass\Routing\RouteBuilder
       */
      protected RouteBuilder $routerBuilder;
    
      /**
       * {@inheritdoc}
       */
      protected function setUp(): void {
        parent::setUp();
        $this->installEntitySchema('mymodule');
        $this->installSchema('system', ['sequences']);
        $this->entityTypeManager = $this->container->get('entity_type.manager');
        $this->router = $this->container->get('router');
        $this->routerBuilder = $this->container->get('router.builder');
        $this->routerBuilder->rebuild();
      }
    
      /**
       * Tests if the canonical route is correctly configured.
       */
      public function testCanonicalRoute(): void {
        $collection = $this->router->getRouteCollection();
        $route = $collection->get('entity.mymodule_entity.canonical');
        $this->assertTrue($route->getOption('_admin_route'), 'The route is marked as an admin route.');
      }
    
    }
    
    

    The test passes, but is marked with a deprecation. Not sure how to get around it.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States kevinquillen

    I reconfigured the test to not rely on a custom module that also required Domain (for the domain.negotiator service in one of its classes) and this issue went away. It must be something in Domain module and similar modules that rely on core/lib/Drupal/Core/Path/PathMatcher::matchPath.

Production build 0.71.5 2024