Commit e0ea2f85 authored by Nico Schallehn's avatar Nico Schallehn

test

parent a977fdcd
......@@ -24,7 +24,11 @@ function TableRowRights($Api, $Data = null){
}
$Api->SpaltenEpisoden;
foreach ($Api->SpaltenEpisoden as $value) {
$ret .= '<td>'.(in_array($value, $Data["SpaltenFil"])?"ja":"Nein").'</td>';
if( isset($Data["SpaltenFil"])){
$ret .= '<td>'.(in_array($value, $Data["SpaltenFil"])?"ja":"Nein").'</td>';
}else {
$ret .= '<td>Nein</td>';
}
}
$ret .= '</tr>';
......
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