mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
Fix export fails with "File not found"
This commit is contained in:
parent
d16d56c55f
commit
957781af5f
@ -123,7 +123,7 @@ class importexport_widget_filter extends Etemplate\Widget\Transformer
|
||||
}
|
||||
foreach((array)$field['values'] as $key => $val)
|
||||
{
|
||||
if (substr($val = lang($val),-1) != '*')
|
||||
if(!is_array($val) && substr($val = lang($val), -1) != '*')
|
||||
{
|
||||
$field['values'][$key] = $val;
|
||||
}
|
||||
|
@ -17,7 +17,7 @@
|
||||
</row>
|
||||
<row class="select_definition">
|
||||
<et2-description value="Select definition"></et2-description>
|
||||
<et2-select id="definition" onchange="widget.getInstanceManager().postSubmit(); return false;" noLang="1"></et2-select>
|
||||
<et2-select id="definition" onchange="1" noLang="1"></et2-select>
|
||||
</row>
|
||||
<row class="select_plugin">
|
||||
<et2-description value="Select plugin"></et2-description>
|
||||
|
Loading…
Reference in New Issue
Block a user