Pre Merge pull request !526 from 御宅男(YznCMS官方)/1.x

pull/526/MERGE
御宅男(YznCMS官方) 2026-06-02 09:17:59 +00:00 committed by Gitee
commit 79805f0510
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ class SelectPage
return $this->selectpageFields;
}
if ($this->selectpageFields && $this->selectpageFields !== '*') {
return explode(',', $this->selectpageFields);
return array_map('trim', explode(',', $this->selectpageFields));
}
return [];
}