diff --git a/main.elm b/main.elm index 45d9628..28adf13 100644 --- a/main.elm +++ b/main.elm @@ -181,7 +181,7 @@ holeEchtenSatzVomServer : String -> Cmd Msg holeEchtenSatzVomServer topic = let url = - "http://localhost/satz.php" + "http://blaeul.de/Der-Wunschpunsch-in-Geheimschrift/satz.php" in Task.perform FetchFail SatzHolenWarErfolgreich (Http.get decodeWunschpunschJson url) @@ -259,7 +259,9 @@ buchstabenInput model aktuellerBuchstabenIndex echterBuchstabe = in case verschlüsselungsergebnis of NichtVerschlüsselt -> - [ text echterBuchstabe ] + [ text echterBuchstabe + , Html.br [] [] + , text echterBuchstabe ] Verschlüsselt zufälligerBuchstabe -> [ text zufälligerBuchstabe diff --git a/satz.php b/satz.php index 35b5b3a..0100160 100644 --- a/satz.php +++ b/satz.php @@ -1,3 +1,15 @@ 'Zufall')); \ No newline at end of file +echo json_encode(array('anzahlSaetze' => count($aSaetze), 'aktuellerSatzIndex'=> $iSatz, 'echterSatz' => trim(str_replace(" ", " ", $sSatz))));