1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 02:51:28 +00:00

disable previous patch

This commit is contained in:
Andrew Dolgov
2006-02-12 09:36:20 +01:00
parent 5b857464f4
commit 5a494a0bc9
2 changed files with 3 additions and 2 deletions

View File

@@ -342,7 +342,7 @@ function localHotkeyHandler(keycode) {
function updateTitle(s) {
var tmp = "Tiny Tiny RSS";
if (s && s.length > 0) {
if (s != undefined) {
current_subtitle = s;
}
@@ -350,7 +350,7 @@ function updateTitle(s) {
tmp = tmp + " (" + global_unread + ")";
}
if (s) {
if (current_subtitle) {
tmp = tmp + " - " + current_subtitle;
}