1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 07:05:56 +00:00

add ability to hide feeds from browser (closes #21)

This commit is contained in:
Andrew Dolgov
2005-12-30 05:11:48 +01:00
parent 5b35b4de9b
commit e3c99f3b63
3 changed files with 32 additions and 4 deletions

View File

@@ -867,7 +867,16 @@
return "false";
}
}
function sql_bool_to_bool($s) {
if ($s == "t" || $s == "1") {
return true;
} else {
return false;
}
}
function toggleEvenOdd($a) {
if ($a == "even")
return "odd";