fix various actions failing when tried on an empty (e.g. no articles) headlines buffer

This commit is contained in:
Andrew Dolgov 2010-05-27 16:10:35 +04:00
parent a1af157410
commit 335565ac7d
1 changed files with 3 additions and 3 deletions

View File

@ -867,7 +867,7 @@ function selectTableRowsByIdPrefix(content_id, prefix, check_prefix, do_select,
var content = $(content_id);
if (!content) {
alert("[selectTableRows] Element " + content_id + " not found.");
debug("[selectTableRows] Element " + content_id + " not found.");
return;
}
@ -915,8 +915,8 @@ function getSelectedTableRowIds(content_id, prefix) {
var content = $(content_id);
if (!content) {
alert("[getSelectedTableRowIds] Element " + content_id + " not found.");
return;
debug("[getSelectedTableRowIds] Element " + content_id + " not found.");
return new Array();
}
var sel_rows = new Array();