diff --git a/backend.php b/backend.php
index ed497f471..e413fbafb 100644
--- a/backend.php
+++ b/backend.php
@@ -1506,7 +1506,7 @@
if ($op == "pref-prefs") {
- $subop = $_POST["subop"];
+ $subop = $_REQUEST["subop"];
if ($subop == "Save configuration") {
@@ -1546,6 +1546,20 @@
}
+ } else if ($subop == "getHelp") {
+
+ $pref_name = db_escape_string($_GET["pn"]);
+
+ $result = db_query($link, "SELECT help_text FROM ttrss_prefs
+ WHERE pref_name = '$pref_name'");
+
+ if (db_num_rows($result) > 0) {
+ $help_text = db_fetch_result($result, 0, "help_text");
+ print $help_text;
+ } else {
+ print "Unknown option: $pref_name";
+ }
+
} else if ($subop == "Reset to defaults") {
db_query($link, "UPDATE ttrss_prefs SET value = def_value");
@@ -1589,12 +1603,17 @@
print "
";
- print "" . $line["short_desc"] . " | ";
-
$type_name = $line["type_name"];
$pref_name = $line["pref_name"];
$value = $line["value"];
$def_value = $line["def_value"];
+ $help_text = $line["help_text"];
+
+ print "" . $line["short_desc"];
+
+ if ($help_text) print " $help_text ";
+
+ print " | ";
print "";
diff --git a/prefs.js b/prefs.js
index a7764758e..3e8b6b181 100644
--- a/prefs.js
+++ b/prefs.js
@@ -105,6 +105,15 @@ function prefslist_callback() {
}
}
+function gethelp_callback() {
+ var container = document.getElementById('prefHelpBox');
+ if (xmlhttp.readyState == 4) {
+
+ container.innerHTML = xmlhttp.responseText;
+ container.style.display = "block";
+
+ }
+}
function notify_callback() {
@@ -785,3 +794,27 @@ function init() {
notify("");
}
+
+/*
+var help_topic_id = false;
+
+function do_dispOptionHelp() {
+
+ if (!xmlhttp_ready(xmlhttp))
+ return;
+
+ xmlhttp.open("GET", "backend.php?op=pref-prefs&subop=getHelp&pn=" +
+ param_escape(help_topic_id), true);
+ xmlhttp.onreadystatechange=gethelp_callback;
+ xmlhttp.send(null);
+
+}
+
+function dispOptionHelp(event, sender) {
+
+ help_topic_id = sender.id;
+
+// document.setTimeout("do_dispOptionHelp()", 100);
+
+} */
+
diff --git a/prefs.php b/prefs.php
index 6b1cefe60..a2e7ac31c 100644
--- a/prefs.php
+++ b/prefs.php
@@ -4,6 +4,7 @@
+
@@ -23,7 +24,7 @@
if (get_pref($link, 'DISPLAY_HEADER')) { ?>
-
+ |
| |