]> git.wh0rd.org - tt-rss.git/blobdiff - js/feedlist.js
remove some obsolete stuff, fix minor issues found by code analyzer
[tt-rss.git] / js / feedlist.js
index 887d844538486bc9a23de97f5aa763a82cdf736a..1e783f3b37f0e215a66143bbad08c9d9852b7cac 100644 (file)
@@ -198,6 +198,28 @@ function feedlist_init() {
 
        hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
 
+       if (getInitParam("is_default_pw")) {
+               console.warn("user password is at default value");
+
+               var dialog = new dijit.Dialog({
+                       title: __("Your password is at default value"),
+                       href: "backend.php?op=dlg&method=defaultpasswordwarning",
+                       id: 'infoBox',
+                       style: "width: 600px",
+                       onCancel: function() {
+                               return true;
+                       },
+                       onExecute: function() {
+                               return true;
+                       },
+                       onClose: function() {
+                               return true;
+                       }
+               });
+
+               dialog.show();
+       }
+
        // bw_limit disables timeout() so we request initial counters separately
     if (getInitParam("bw_limit") == "1") {
                request_counters(true);
@@ -304,7 +326,7 @@ function parse_counters(elems) {
                        if (id > 0) {
                                if (has_img) {
                                        setFeedIcon(id, false,
-                                               getInitParam("icons_url") + "/" + id + ".ico");
+                                               getInitParam("icons_url") + "/" + id + ".ico?" + has_img);
                                } else {
                                        setFeedIcon(id, false, 'images/blank_icon.gif');
                                }