Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3100350
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3100350
Commits
0e5a2763
Commit
0e5a2763
authored
1 year ago
by
Julian Pustkuchen
Browse files
Options
Downloads
Patches
Plain Diff
Use different delimiter and comment modifier.
parent
c77d6b84
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/modules/path_alias/src/Entity/PathAlias.php
+3
-4
3 additions, 4 deletions
core/modules/path_alias/src/Entity/PathAlias.php
with
3 additions
and
4 deletions
core/modules/path_alias/src/Entity/PathAlias.php
+
3
−
4
View file @
0e5a2763
...
...
@@ -63,16 +63,15 @@ class PathAlias extends ContentEntityBase implements PathAliasInterface {
* The trimmed alias.
*/
public
static
function
trimAlias
(
string
$alias
):
string
{
$filteredAlias
=
preg_replace
(
'
%
$filteredAlias
=
preg_replace
(
'
/
( # At start
[^\/] # never trim slash.
)
( # Then
[\\\/]* # trim slashes
\s* # and whitespaces
)* # in zero or more repetitions
$ # at the end.
%'
,
'\1'
,
$alias
);
)* # in zero or more repetitions at the end.
$/x'
,
'\1'
,
$alias
);
if
(
$filteredAlias
===
NULL
)
{
throw
new
\Exception
(
'A problem occurred while trimming the path alias.'
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment