mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-03 13:25:05 +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>
|
||||||
<row>
|
<row>
|
||||||
<description value="Description"/>
|
<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>
|
||||||
<row>
|
<row>
|
||||||
<description span="all"/>
|
<description span="all"/>
|
||||||
|
@ -161,7 +161,7 @@
|
|||||||
}
|
}
|
||||||
if (isset($widgetattr2xul['.set'])) // set default-attr for type
|
if (isset($widgetattr2xul['.set'])) // set default-attr for type
|
||||||
{
|
{
|
||||||
$attrs = explode(',',$widgetattr2xul[1]);
|
$attrs = explode(',',$widgetattr2xul['.set']);
|
||||||
while (list(,$attr) = each($attrs))
|
while (list(,$attr) = each($attrs))
|
||||||
{
|
{
|
||||||
list($attr,$val) = explode('=',$attr);
|
list($attr,$val) = explode('=',$attr);
|
||||||
|
Loading…
Reference in New Issue
Block a user