summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--functions.php3
-rw-r--r--tt-rss.js8
2 files changed, 9 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index eb14f52e5..51c2dd17e 100644
--- a/functions.php
+++ b/functions.php
@@ -4216,8 +4216,7 @@
function article_publish_url($link) {
- $url_path = 'http://' . $_SERVER["HTTP_HOST"] . \
- parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
+ $url_path = 'http://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
$url_path .= "?op=publish&key=" . get_pref($link, "_PREFS_PUBLISH_KEY");
diff --git a/tt-rss.js b/tt-rss.js
index 1a4590522..cf68a0f50 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -27,6 +27,10 @@ function tagsAreDisplayed() {
function toggleTags(show_all) {
+ try {
+
+ debug("toggleTags: " + show_all + "; " + display_tags);
+
var p = document.getElementById("dispSwitchPrompt");
if (!show_all && !display_tags) {
@@ -43,6 +47,10 @@ function toggleTags(show_all) {
notify_progress("Loading, please wait...", true);
updateFeedList();
}
+
+ } catch (e) {
+ exception_error("toggleTags", e);
+ }
}
function dlg_frefresh_callback() {