Make spaces between pattern parts optional

This commit is contained in:
M. Gardner 2020-01-29 14:16:48 +02:00
parent 0193d237e0
commit ca40613f6f
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ $format=$wordlist["format"] or die("unspecified format");
$idea="";
foreach($format as $part){
$idea.=$wordlist[$part][array_rand($wordlist[$part])].' ';
$idea.=$wordlist[$part][array_rand($wordlist[$part])];
}
?>