Fix: Avoid warnings
This commit is contained in:
parent
0d98280e13
commit
1999452701
@ -292,8 +292,8 @@ class Form
|
|||||||
{
|
{
|
||||||
$tmp=explode(':',$inputType);
|
$tmp=explode(':',$inputType);
|
||||||
$inputType=$tmp[0];
|
$inputType=$tmp[0];
|
||||||
$rows=($tmp[1]?$tmp[1]:'8');
|
$rows=(empty($tmp[1])?'8':$tmp[1]);
|
||||||
$cols=($tmp[2]?$tmp[2]:'80');
|
$cols=(empty($tmp[2])?'80':$tmp[2]);
|
||||||
}
|
}
|
||||||
else if (preg_match('/^ckeditor/',$inputType))
|
else if (preg_match('/^ckeditor/',$inputType))
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user