summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend.php1
-rw-r--r--modules/pref-prefs.php14
2 files changed, 14 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index b078250ad..a7606c5b7 100644
--- a/backend.php
+++ b/backend.php
@@ -132,6 +132,7 @@
$access_level_names = array(
0 => __("User"),
+ 5 => __("Power User"),
10 => __("Administrator"));
require_once "modules/pref-prefs.php";
diff --git a/modules/pref-prefs.php b/modules/pref-prefs.php
index 721911347..20cffe5e5 100644
--- a/modules/pref-prefs.php
+++ b/modules/pref-prefs.php
@@ -8,6 +8,9 @@
}
function module_pref_prefs($link) {
+
+ global $access_level_names;
+
$subop = $_REQUEST["subop"];
$prefs_blacklist = array("HIDE_FEEDLIST");
@@ -218,7 +221,7 @@
print "<table width=\"100%\" class=\"prefPrefsList\">";
print "<tr><td colspan='3'><h3>".__("Personal data")."</h3></tr></td>";
- $result = db_query($link, "SELECT email FROM ttrss_users
+ $result = db_query($link, "SELECT email,access_level FROM ttrss_users
WHERE id = ".$_SESSION["uid"]);
$email = db_fetch_result($result, 0, "email");
@@ -227,6 +230,15 @@
print "<td><input class=\"editbox\" name=\"email\"
onkeypress=\"return filterCR(event, changeUserEmail)\"
value=\"$email\"></td></tr>";
+
+ if (!SINGLE_USER_MODE) {
+
+ $access_level = db_fetch_result($result, 0, "access_level");
+
+ print "<tr><td width=\"40%\">".__('Access level')."</td>";
+ print "<td>" . $access_level_names[$access_level] . "</td></tr>";
+
+ }
print "</table>";