Merge branch 'bug_9556' into 3.12-master
This commit is contained in:
commit
723dadcf7a
1 changed files with 2 additions and 2 deletions
|
@ -1404,8 +1404,8 @@
|
|||
var attrid = item.message_attribute_id;
|
||||
var transports = ['email', 'rss', 'sms'];
|
||||
$.each(transports, function(j, transport) {
|
||||
if (item['transport-' + transport] != ' ') {
|
||||
$('#' + transport + attrid).attr('checked', item['transport-' + transport]);
|
||||
if (item['transports_' + transport] == 1) {
|
||||
$('#' + transport + attrid).attr('checked', 'checked');
|
||||
} else {
|
||||
$('#' + transport + attrid).removeAttr('checked');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue