Skip to content
Snippets Groups Projects
Commit 0e5a2763 authored by Julian Pustkuchen's avatar Julian Pustkuchen
Browse files

Use different delimiter and comment modifier.

parent c77d6b84
No related branches found
No related tags found
No related merge requests found
......@@ -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.');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment