Commit 00bd069c authored by Nico Schallehn's avatar Nico Schallehn

test

parent 75112576
......@@ -394,13 +394,13 @@ class Media {
$SchauspielerRole = explode("/", $SchauspielerRole);
foreach ($SchauspielerRole as $value) {
$value = explode("as", $value);
$SchauspielerRole[$value[0]] = $value[1];
$SchauspielerRole[trim($value[0])] = trim($value[1]);
}
foreach ($Schauspieler as $value) {
$value = explode(">", $value);
$Schauspieler[$value[0]] = array($value[1],array_search($value[1], $SchauspielerRole));
$Schauspieler[trim($value[0])] = array(trim($value[1]),trim(array_search(trim($value[1]), $SchauspielerRole)));
}
......
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