summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-18 13:38:21 +0100
committerAndrew Dolgov <[email protected]>2005-11-18 13:38:21 +0100
commit1a7572cb27ec4d4a7461680b7e73f9922708d810 (patch)
tree6936750018df82e75b2b567aa1153daa1b64be6a /backend.php
parentfefa6ca3afec86c405b8df13386ed0cc43668a0a (diff)
dhtml user details
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php19
1 files changed, 10 insertions, 9 deletions
diff --git a/backend.php b/backend.php
index a2f6a0da7..91853d4b8 100644
--- a/backend.php
+++ b/backend.php
@@ -1847,6 +1847,8 @@
ttrss_users
ORDER by login");
+ print "<div id=\"prefUserDetails\">PLACEHOLDER</div>";
+
print "<p><table width=\"100%\" class=\"prefUserList\" id=\"prefUserList\">";
print "<tr class=\"title\">
@@ -1883,7 +1885,7 @@
} else if (!$edit_uid || $subop != "edit") {
print "<td><input onclick='toggleSelectRow(this);'
- type=\"checkbox\" id=\"UMCHK-".$line["id"]."\"></td>";
+ type=\"checkbox\" id=\"UMCHK-$uid\"></td>";
print "<td><a href=\"javascript:editUser($uid);\">" .
$line["login"] . "</td>";
@@ -1951,16 +1953,14 @@
return;
}
- print "<html><head>
+/* print "<html><head>
<title>Tiny Tiny RSS : User Details</title>
<link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
- </head><body>";
+ </head><body>"; */
$uid = sprintf("%d", $_GET["id"]);
- /* FIXME this badly needs real implementation */
-
print "<div class='userDetails'>";
$result = db_query($link, "SELECT login,last_login,access_level
@@ -2023,12 +2023,13 @@
print "</ul>";
- print "<p align='center'>
- <a href=\"javascript:window.close()\">(Close this window)</a></p>";
-
print "</div>";
- print "</body></html>";
+ print "<div align='center'>
+ <input type='submit' class='button'
+ onclick=\"closeUserDetails()\" value=\"Close this window\"></div>";
+
+// print "</body></html>";
}