16755: Textarea resizing has been disabled in 2.8

Se agrego una nueva propiedad en el formulario de Textarea que permite si el campo sea de tamañariable o no.
This commit is contained in:
marcelo.cuiza
2015-02-05 13:40:18 -04:00
parent f4a155fd43
commit 80bdbb79b1
4 changed files with 21 additions and 4 deletions

View File

@@ -55,6 +55,14 @@ if (isset($_POST['form']['PME_READONLY'])) {
$_POST['form']['PME_READONLY'] = 0;
}
if (isset($_POST['form']['PME_RESIZABLE'])) {
if ($_POST['form']['PME_RESIZABLE'] == '') {
$_POST['form']['PME_RESIZABLE'] = 0;
}
} else {
$_POST['form']['PME_RESIZABLE'] = 0;
}
$_POST["form"]["PME_OPTGROUP"] = (isset($_POST["form"]["PME_OPTGROUP"]) && !empty($_POST["form"]["PME_OPTGROUP"]))? intval($_POST["form"]["PME_OPTGROUP"]) : 0;
if (isset($_POST['form']['PME_SAVELABEL'])) {