diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-11-06 16:39:38 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-11-06 16:39:38 +0000 |
commit | b2ed0cd03d61675aefbd42d101c2698009840f45 (patch) | |
tree | 0287ce8a30dff32920f09e18aa71166c6d5051fa /admin/tshirt.php | |
parent | de656d885e687337698016024304300a8ac749ea (diff) |
fehlen nur noch im admi bereich:
# News-Verwaltung
# FAQ
# Freie Engel
git-svn-id: svn://svn.cccv.de/engel-system@17 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'admin/tshirt.php')
-rwxr-xr-x | admin/tshirt.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/tshirt.php b/admin/tshirt.php index 3bdd1902..2a3ea500 100755 --- a/admin/tshirt.php +++ b/admin/tshirt.php @@ -7,13 +7,13 @@ include ("./inc/funktion_db_list.php"); include ("./inc/funktion_user.php"); -If (IsSet($aktiv)) { +If (IsSet($_GET["aktiv"])) { - $SQL="Update User set Tshirt=\"1\" where UID=\"$aktiv\" limit 1"; + $SQL="Update User set Tshirt=\"1\" where UID=\"". $_GET["aktiv"]. "\" limit 1"; $Erg = mysql_query($SQL, $con); if ($Erg == 1) { } else { - echo "Fehler beim speichern bei Engel ".UID2Nick($eUID)."<br>"; + echo "Fehler beim speichern bei Engel ". UID2Nick($_GET["aktive"]). "<br>"; } } |