This commit is contained in:
2019-06-30 18:44:47 +02:00
parent 1a3df81854
commit 1e366bed08

View File

@@ -41,6 +41,7 @@ function maskWord($word) {
function getAllWords() {
$str = file_get_contents("words-array.php");
$str = str_replace('"', '', $str);
return explode(", ", $str);
}