summaryrefslogtreecommitdiff
path: root/www-ssl/admin/userSaveNormal.php
diff options
context:
space:
mode:
authorAngelo Cuccato <cuccato@web.de>2010-01-19 23:52:47 +0100
committerAngelo Cuccato <cuccato@web.de>2010-01-19 23:52:47 +0100
commitec21c8ade176c706fd067f8835e7f4dc752ce6ba (patch)
tree7e9fcd976ba5f551b1facb48ebcec558d0d2ebb0 /www-ssl/admin/userSaveNormal.php
parent6cfc2d6da0213aca24b1c97647c7bd5009971d4d (diff)
remove unused functions
Diffstat (limited to 'www-ssl/admin/userSaveNormal.php')
-rwxr-xr-xwww-ssl/admin/userSaveNormal.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/www-ssl/admin/userSaveNormal.php b/www-ssl/admin/userSaveNormal.php
index 229a4cdc..466c2e6e 100755
--- a/www-ssl/admin/userSaveNormal.php
+++ b/www-ssl/admin/userSaveNormal.php
@@ -45,36 +45,6 @@ if (IsSet($_GET["action"]))
echo "Fehler beim speichern...\n(". mysql_error($con). ")";
}
}
- elseif ($_POST["Type"] == "Secure")
- {
- $SQL2 = "UPDATE `UserCVS` SET ";
- $SQL_CVS = "SELECT * FROM `UserCVS` WHERE `UID`='". $_POST["enterUID"]. "'";
- $Erg_CVS = mysql_query($SQL_CVS, $con);
- $CVS_Data = mysql_fetch_array($Erg_CVS);
- $CVS_Data_i = 1;
- foreach ($CVS_Data as $CVS_Data_Name => $CVS_Data_Value)
- {
- if( ($CVS_Data_i+1)%2 && $CVS_Data_Name!="UID") {
- if( $CVS_Data_Name == "GroupID")
- {
- if( $_POST["enterUID"] > 0 )
- $SQL2.= "`$CVS_Data_Name` = ". $_POST["GroupID"].", ";
- } else {
- $SQL2.= "`$CVS_Data_Name` = '". $_POST[$CVS_Data_i]."', ";
- }
- }
- $CVS_Data_i++;
- }
- $SQL2 = substr( $SQL2, 0, strlen($SQL2)-2 );
- $SQL2.= " WHERE `UID`='". $_POST["enterUID"]. "' LIMIT 1;";
- echo "<br>Secure-";
- $Erg = db_query($SQL2, "change user CVS");
- if ($Erg == 1) {
- echo "&Auml;nderung wurde gesichert...\n";
- } else {
- echo "Fehler beim speichern...\n(". mysql_error($con). ")";
- }
- }
else
echo "<h1>Fehler: Unbekanter Type (". $_POST["Type"]. ") übergeben\n</h1>\n";
}