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) {
|
if (!$urlValue) {
|
||||||
$urlValue = $this->value;
|
$urlValue = $this->value;
|
||||||
}
|
}
|
||||||
$this->urlValue = \mb_substr($urlValue, 0, 250) ;
|
$this->urlValue = $urlValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function initializeObject(): void
|
public function initializeObject(): void
|
||||||
|
@ -75,7 +75,7 @@ class AssetAttribute
|
||||||
\array_column($this->replacementMap, 'value'),
|
\array_column($this->replacementMap, 'value'),
|
||||||
$this->urlValue
|
$this->urlValue
|
||||||
);
|
);
|
||||||
$this->urlValue = \urlencode(\strtolower($this->urlValue));
|
$this->urlValue = \mb_substr(\urlencode(\strtolower($this->urlValue)), 0, 250);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue