This commit is contained in:
2019-06-30 18:46:23 +02:00
parent 3a745ac1e1
commit 45fa1353cf
2 changed files with 1 additions and 2 deletions

View File

@@ -44,6 +44,7 @@ function getAllWords() {
$str = str_replace('"', '', $str);
$str = str_replace('[', '', $str);
$str = str_replace(']', '', $str);
$str = str_replace(';', '', $str);
return explode(", ", $str);
}