Merge pull request #676 from creative-commoners/pulls/3/p81fix

ENH Various fixes for PHP 8.1 compatibility
This commit is contained in:
Guy Sartorelli 2022-04-21 12:03:33 +12:00 committed by GitHub
commit f8988ad5c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class BlogMemberExtension extends DataExtension
$this->owner->URLSegment = $this->generateURLSegment();
while (!$this->validURLSegment()) {
$this->owner->URLSegment = preg_replace('/-[0-9]+$/', null, $this->owner->URLSegment) . '-' . $count;
$this->owner->URLSegment = preg_replace('/-[0-9]+$/', '', $this->owner->URLSegment) . '-' . $count;
$count++;
}