Fixed error when load data in action alert in manage alerts, tiquet: #2088

This commit is contained in:
m-lopez-f 2015-05-06 13:09:45 +02:00
parent f5b26f69e6
commit 50e6fd2bab
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ $(document).ready (function () {
// Replace the old column with the new
$table_macros_field.replaceWith(field_row);
if (old_value != '' && old_recovery_value != ''){
if (old_value != '' || old_recovery_value != ''){
$("[name=field" + i + "_value]").val(old_value);
$("[name=field" + i + "_recovery_value]").val(old_recovery_value);
}