summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-27 12:29:51 +0400
committerAndrew Dolgov <[email protected]>2013-03-27 12:29:51 +0400
commit744a1b0080de3ed2327cc4173116c99d89ef407b (patch)
treeb33f2b556ad574d0a9f78dc515ef169b220f9e0d /classes
parentd3911f80ca897db3644ed1381209533a94a4e5d8 (diff)
disable show additional preferences checkbox as repeatedly confusing
Diffstat (limited to 'classes')
-rw-r--r--classes/pref/prefs.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index a5a699a67..2e8acff5b 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -412,10 +412,12 @@ class Pref_Prefs extends Handler_Protected {
$profile_qpart = "profile IS NULL";
}
- if ($_SESSION["prefs_show_advanced"])
+ /* if ($_SESSION["prefs_show_advanced"])
$access_query = "true";
else
- $access_query = "(access_level = 0 AND section_id != 3)";
+ $access_query = "(access_level = 0 AND section_id != 3)"; */
+
+ $access_query = 'true';
$result = db_query($this->link, "SELECT DISTINCT
ttrss_user_prefs.pref_name,short_desc,help_text,value,type_name,
@@ -602,7 +604,7 @@ class Pref_Prefs extends Handler_Protected {
print "&nbsp;";
- $checked = $_SESSION["prefs_show_advanced"] ? "checked='1'" : "";
+ /* $checked = $_SESSION["prefs_show_advanced"] ? "checked='1'" : "";
print "<input onclick='toggleAdvancedPrefs()'
id='prefs_show_advanced'
@@ -610,7 +612,7 @@ class Pref_Prefs extends Handler_Protected {
$checked
type=\"checkbox\"></input>
<label for='prefs_show_advanced'>" .
- __("Show additional preferences") . "</label>";
+ __("Show additional preferences") . "</label>"; */
global $pluginhost;
$pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB_SECTION,