summaryrefslogtreecommitdiff
path: root/www-ssl/admin/group.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2011-06-01 15:02:00 +0200
committerPhilip Häusler <msquare@notrademark.de>2011-06-01 15:02:00 +0200
commite050c0dc7f4c70b13596f8e940a31a9678bb3b52 (patch)
treece222f80b4c02d48c1990392627383f63a08a6e9 /www-ssl/admin/group.php
parenta537f4bf73101c467af3b01db32fcdb9fd0a91ce (diff)
bootstrapping
Diffstat (limited to 'www-ssl/admin/group.php')
-rw-r--r--www-ssl/admin/group.php84
1 files changed, 42 insertions, 42 deletions
diff --git a/www-ssl/admin/group.php b/www-ssl/admin/group.php
index f42fea97..b8a52ec2 100644
--- a/www-ssl/admin/group.php
+++ b/www-ssl/admin/group.php
@@ -1,49 +1,49 @@
<?php
+require_once ('../bootstrap.php');
$title = "User-Liste";
$header = "Editieren der Engelliste";
-include ("../../../camp2011/includes/header.php");
-include ("../../../camp2011/includes/funktion_db_list.php");
-
-if (!IsSet($_GET["enterGID"]))
-{
- // Userliste, keine UID uebergeben...
-
- $SQL = "SELECT * FROM `UserGroups` ORDER BY `Name` ASC";
- $Erg = mysql_query($SQL, $con);
- echo mysql_error($con);
-
- // anzahl zeilen
- $Zeilen = mysql_num_rows($Erg);
-
- echo "<table class=\"border\" cellpadding=\"2\" cellspacing=\"1\">\n";
- echo "<tr class=\"contenttopic\">\n";
- echo "\t<td>Groupname</td>\n";
- echo "\t<td>Link</td>\n";
- echo "</tr>\n";
-
- for ($n = 0 ; $n < $Zeilen ; $n++) {
- echo "<tr class=\"content\">\n";
- echo "\t<td>".mysql_result($Erg, $n, "Name")."</td>\n";
-
- echo "<td><a href=\"./userChangeSecure.php?enterUID=".
- mysql_result($Erg, $n, "UID")."&Type=Secure\">change</a></td>\n";
- echo "</tr>\n";
- }
-
- // new form
- echo "<tr class=\"content\">\n";
- echo "\t<form action=\"userSaveSecure.php?new=newGroup\" method=\"POST\">\n";
- echo "\t\t<td><input name=\"GroupName\" type=\"text\" value=\"--new group--\"></td>\n";
- echo "\t\t<td><input type=\"submit\" name=\"Send\" value=\"Save\"></td>\n";
- echo "\t</form>\n";
- echo "</tr>\n";
-
- echo "\t</table>\n";
- // Ende Userliste
-}
-
-include ("../../../camp2011/includes/footer.php");
+include ("includes/header.php");
+include ("includes/funktion_db_list.php");
+
+if (!IsSet ($_GET["enterGID"])) {
+ // Userliste, keine UID uebergeben...
+
+ $SQL = "SELECT * FROM `UserGroups` ORDER BY `Name` ASC";
+ $Erg = mysql_query($SQL, $con);
+ echo mysql_error($con);
+
+ // anzahl zeilen
+ $Zeilen = mysql_num_rows($Erg);
+
+ echo "<table class=\"border\" cellpadding=\"2\" cellspacing=\"1\">\n";
+ echo "<tr class=\"contenttopic\">\n";
+ echo "\t<td>Groupname</td>\n";
+ echo "\t<td>Link</td>\n";
+ echo "</tr>\n";
+
+ for ($n = 0; $n < $Zeilen; $n++) {
+ echo "<tr class=\"content\">\n";
+ echo "\t<td>" . mysql_result($Erg, $n, "Name") . "</td>\n";
+
+ echo "<td><a href=\"./userChangeSecure.php?enterUID=" .
+ mysql_result($Erg, $n, "UID") . "&Type=Secure\">change</a></td>\n";
+ echo "</tr>\n";
+ }
+
+ // new form
+ echo "<tr class=\"content\">\n";
+ echo "\t<form action=\"userSaveSecure.php?new=newGroup\" method=\"POST\">\n";
+ echo "\t\t<td><input name=\"GroupName\" type=\"text\" value=\"--new group--\"></td>\n";
+ echo "\t\t<td><input type=\"submit\" name=\"Send\" value=\"Save\"></td>\n";
+ echo "\t</form>\n";
+ echo "</tr>\n";
+
+ echo "\t</table>\n";
+ // Ende Userliste
+}
+
+include ("includes/footer.php");
?>