query_str = query_str + "&tags=1";
}
- if (getActiveFeedId()) {
+ if (getActiveFeedId() != undefined) {
query_str = query_str + "&actid=" + getActiveFeedId();
}
function viewCurrentFeed(subop) {
- if (getActiveFeedId()) {
+// if (getActiveFeedId()) {
+ if (getActiveFeedId() != undefined) {
viewfeed(getActiveFeedId(), subop);
} else {
disableContainerChildren("headlinesToolbar", false, document);
- viewfeed(-1, subop); // FIXME
+// viewfeed(-1, subop); // FIXME
}
return false; // block unneeded form submits
}
if (opid == "qmcRemoveFeed") {
var actid = getActiveFeedId();
- if (!actid) {
+ if (actid == undefined) {
alert("Please select some feed first.");
return;
}