Commit 56c39950 authored by Nico Schallehn's avatar Nico Schallehn

test

parent cb2885c0
...@@ -103,7 +103,8 @@ class MediaDBAPI{ ...@@ -103,7 +103,8 @@ class MediaDBAPI{
} }
if(isset($GET_arr['Suche'])){ if(isset($GET_arr['Suche'])){
/* Work a round für Android 5 Geräte*/ /* Work a round für Android 5 Geräte*/
$SucheWort = str_replace("\u00e4", "ä", $GET_arr['Suche']); $SucheWort = json_decode($GET_arr['Suche']);
$SucheWort = str_replace("\u00e4", "ä", $SucheWort);
$SucheWort = str_replace("\u00f6", "ö", $SucheWort); $SucheWort = str_replace("\u00f6", "ö", $SucheWort);
$SucheWort = str_replace("\u00fc", "ü", $SucheWort); $SucheWort = str_replace("\u00fc", "ü", $SucheWort);
$SucheWort = str_replace("\u00c4", "Ä", $SucheWort); $SucheWort = str_replace("\u00c4", "Ä", $SucheWort);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment