mirror of
https://github.com/e107inc/e107.git
synced 2025-08-03 21:27:25 +02:00
Fixes #4257 - Plugin Builder field type detection fix.
This commit is contained in:
@@ -5027,10 +5027,9 @@ TEMPLATE;
|
|||||||
'mediumblob','longblob','tinytext','mediumtext','longtext','text','date');
|
'mediumblob','longblob','tinytext','mediumtext','longtext','text','date');
|
||||||
|
|
||||||
|
|
||||||
|
$type = strtolower($type);
|
||||||
|
|
||||||
|
if(in_array($type,$strings))
|
||||||
|
|
||||||
if(in_array(strtolower($type),$strings))
|
|
||||||
{
|
{
|
||||||
$value = 'str';
|
$value = 'str';
|
||||||
}
|
}
|
||||||
@@ -5044,8 +5043,6 @@ TEMPLATE;
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$fname = $this->table."[fields][".$name."][data]";
|
$fname = $this->table."[fields][".$name."][data]";
|
||||||
|
|
||||||
return $frm->hidden($fname, $value). "<a href='#' class='e-tip' title='{$type}' >".$value."</a>" ;
|
return $frm->hidden($fname, $value). "<a href='#' class='e-tip' title='{$type}' >".$value."</a>" ;
|
||||||
|
Reference in New Issue
Block a user