mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
small fix for missed default-attributes on export, created eg:
<textbox ="" ...> when exporting a textarea
This commit is contained in:
parent
e04b602f4a
commit
401685cb1d
@ -33,7 +33,7 @@
|
||||
</row>
|
||||
<row>
|
||||
<description value="Description"/>
|
||||
<textbox ="" cols="3" rows="100" span="all" id="descr" statustext="we have a fulltext search using that description"/>
|
||||
<textbox multiline="true" cols="3" rows="100" span="all" id="descr" statustext="we have a fulltext search using that description"/>
|
||||
</row>
|
||||
<row>
|
||||
<description span="all"/>
|
||||
|
@ -161,7 +161,7 @@
|
||||
}
|
||||
if (isset($widgetattr2xul['.set'])) // set default-attr for type
|
||||
{
|
||||
$attrs = explode(',',$widgetattr2xul[1]);
|
||||
$attrs = explode(',',$widgetattr2xul['.set']);
|
||||
while (list(,$attr) = each($attrs))
|
||||
{
|
||||
list($attr,$val) = explode('=',$attr);
|
||||
|
Loading…
Reference in New Issue
Block a user