Merge pull request #2092 from luisfernandosl/BUG-13332

BUG 13332 "Problem with link target FrameName" SOLVED
This commit is contained in:
julceslauhub
2013-10-22 09:22:29 -07:00

View File

@@ -236,6 +236,10 @@ foreach ($FieldAttributes as $key => $value) {
case 'string':
if (!empty($value)) {
$FieldAttrib[strtolower($key)] = $value;
} else {
if ($_POST["form"]["TYPE"] == "link" && $key == "TARGET_SEL") {
$FieldAttrib[strtolower($key)] = $value;
}
}
break;
case 'integer':