mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Fixed, PHP Warning: Invalid argument supplied for foreach() in ...
(skiped the importexport one, as it was already fixed by Nathan)
This commit is contained in:
parent
34db38b70d
commit
02d9accc94
@ -165,16 +165,22 @@ class Schema
|
||||
$columns = implode('-',$columns);
|
||||
if ($ignore_length_limit) $columns = preg_replace('/\(\d+\)/', '', $columns);
|
||||
}
|
||||
foreach($indexs as $index)
|
||||
{
|
||||
if (is_array($index))
|
||||
|
||||
if(is_array($indexs)){
|
||||
|
||||
foreach($indexs as $index)
|
||||
{
|
||||
unset($index['options']);
|
||||
$index = implode('-',$index);
|
||||
if (is_array($index))
|
||||
{
|
||||
unset($index['options']);
|
||||
$index = implode('-',$index);
|
||||
}
|
||||
if ($ignore_length_limit) $index = preg_replace('/\(\d+\)/', '', $index);
|
||||
if ($columns == $index) return true;
|
||||
}
|
||||
if ($ignore_length_limit) $index = preg_replace('/\(\d+\)/', '', $index);
|
||||
if ($columns == $index) return true;
|
||||
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user