one more try
This commit is contained in:
parent
2119e62bbb
commit
d7e796eea5
1 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ class AssetAttribute
|
|||
if (!$urlValue) {
|
||||
$urlValue = $this->value;
|
||||
}
|
||||
$this->urlValue = \mb_substr($urlValue, 0, 250) ;
|
||||
$this->urlValue = $urlValue;
|
||||
}
|
||||
|
||||
public function initializeObject(): void
|
||||
|
@ -75,7 +75,7 @@ class AssetAttribute
|
|||
\array_column($this->replacementMap, 'value'),
|
||||
$this->urlValue
|
||||
);
|
||||
$this->urlValue = \urlencode(\strtolower($this->urlValue));
|
||||
$this->urlValue = \mb_substr(\urlencode(\strtolower($this->urlValue)), 0, 250);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue