Bug 35769: Remove extra parenthesis
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
928b606083
commit
07cf21e6b9
1 changed files with 3 additions and 3 deletions
|
@ -1724,11 +1724,11 @@
|
|||
|
||||
if ( selected_items.closest('tr').find(".pickup_locations").val() == '' ) {
|
||||
|
||||
msg = (_("- Please select a pickup location for the item") + "\n");
|
||||
msg = _("- Please select a pickup location for the item") + "\n"
|
||||
}
|
||||
}
|
||||
else {
|
||||
msg = (_("- Please select an item to place a hold") + "\n");
|
||||
msg = _("- Please select an item to place a hold") + "\n";
|
||||
}
|
||||
} else if ( $("#requestgrp").is(":checked") ) {
|
||||
var selected_group = $('#requestgroup input[type="radio"]:checked');
|
||||
|
@ -1742,7 +1742,7 @@
|
|||
} else {
|
||||
// Requesting next available
|
||||
if( $("#pickup-next-avail").length < 1 || $("#pickup-next-avail").val() == "" || $('#pickup-next-avail').val() === null ){
|
||||
msg = (_("- Please select a pickup location for this hold") + "\n");
|
||||
msg = _("- Please select a pickup location for this hold") + "\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue