mirror of
https://github.com/e107inc/e107.git
synced 2025-08-11 00:54:49 +02:00
Fixes #4806 - news keyword maxlength limitation fix.
This commit is contained in:
@@ -5648,7 +5648,10 @@ var_dump($select_options);*/
|
||||
'e_editable' => $field . '_' . $id,
|
||||
);
|
||||
|
||||
$tpl = $this->text($field, $value, 80, $options);
|
||||
$maxlength = vartrue($parms['maxlength'], 80);
|
||||
unset($parms['maxlength']);
|
||||
|
||||
$tpl = $this->text($field, $value, $maxlength, $options);
|
||||
|
||||
$mode = preg_replace('/[\W]/', '', vartrue($_GET['mode']));
|
||||
$value = "<a" . $this->attributes([
|
||||
|
Reference in New Issue
Block a user