mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
lowercase subtitle value
This commit is contained in:
parent
e04da6cb19
commit
d4bfcaef08
1 changed files with 4 additions and 2 deletions
|
|
@ -60,8 +60,10 @@ class Title
|
|||
): void
|
||||
{
|
||||
$this->gtk->set_subtitle(
|
||||
is_null($subtitle) ? $this->_subtitle : trim(
|
||||
$subtitle
|
||||
is_null($subtitle) ? $this->_subtitle : strtolower(
|
||||
trim(
|
||||
$subtitle
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue