1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-25 15:31:41 +02:00

Correct some keyword fields with the 'tag' form element.

This commit is contained in:
Cameron
2014-01-12 08:05:12 -08:00
parent 7deb681e68
commit 4a9b4c1819
3 changed files with 11 additions and 8 deletions

View File

@@ -3260,8 +3260,8 @@ class e_form
$ret = vartrue($eloptions['pre']).$this->selectbox($key, $options, $value, $eloptions).vartrue($eloptions['post']);
break;
default:
$ret = $value;
default:// No LAN necessary, debug only.
$ret = (ADMIN) ? "<span class='alert alert-error'>".LAN_ERROR." Unknown 'type' : ".$attributes['type'] ."</span>" : $value;
break;
}