summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/functions.js b/functions.js
index ff35961e8..7901c00f3 100644
--- a/functions.js
+++ b/functions.js
@@ -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();