Vox Populi(x) forum

Alexandria Book Library => Errori (Bugs) => Topic started by: sertlan on 27 August 2024, 13:36:00

Title: Filling in the "Keywords" field in "Author Manager" causes an error
Post by: sertlan on 27 August 2024, 13:36:00
Hi federica.

Filling in the "Keywords" field in "Author Manager" causes the error "0 Class "str_ireplace" not found".
Title: Re: Filling in the "Keywords" field in "Author Manager" causes an error
Post by: federica on 27 August 2024, 15:50:50
Thanks for reporting.
I fixed the bug. I will publish the new release as soon as possible.
If you want to fix it immediately, open administrator/components/com_abook/tables/author.php
then change line 50
from
$after_clean = str_ireplace::str_ireplace($bad_characters, "", $this->metakey); // remove bad charactersto
$after_clean = StringHelper::str_ireplace($bad_characters, "", $this->metakey); // remove bad characters
Title: Re: Filling in the "Keywords" field in "Author Manager" causes an error
Post by: sertlan on 27 August 2024, 16:01:48
Now the error does not occur. Thank you very much.