summaryrefslogtreecommitdiff
path: root/www-ssl/makeuser.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-23 21:08:11 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-23 21:08:11 +0000
commit71115efa5e43feccde9fa8db2f7688ffd0f3ab17 (patch)
tree809821510bd9c7bd5cedc468c19df6bf6a3a3f13 /www-ssl/makeuser.php
parentadeb66ec6e4913d5550951606009f00ab0c0259e (diff)
pruefung des alter felde hinzugefuegt
git-svn-id: svn://svn.cccv.de/engel-system@93 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/makeuser.php')
-rwxr-xr-xwww-ssl/makeuser.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/www-ssl/makeuser.php b/www-ssl/makeuser.php
index 7b17836d..900adee9 100755
--- a/www-ssl/makeuser.php
+++ b/www-ssl/makeuser.php
@@ -9,6 +9,8 @@ include ("./inc/crypt.php");
if( isset($_POST["send"]))
{
$eNick = trim($_POST["Nick"]);
+ if( $_POST["Alter"]=="") $_POST["Alter"] = 0;
+
//user vorhanden?
$SQLans = "SELECT UID FROM `User` WHERE `Nick`='". $_POST["Nick"]. "'";
$Ergans = mysql_query($SQLans, $con);
@@ -26,6 +28,10 @@ if( isset($_POST["send"]))
{
$error= Get_Text("makeuser_error_mail");
}
+ elseif( !is_numeric($_POST["Alter"]))
+ {
+ $error= Get_Text("makeuser_error_Alter");
+ }
elseif( $_POST["Passwort"] != $_POST["Passwort2"] )
{
$error= Get_Text("makeuser_error_password1");
@@ -39,8 +45,6 @@ if( isset($_POST["send"]))
$_POST["Passwort"] = PassCrypt($_POST["Passwort"]);
unset($_POST["Passwort2"]);
- if( $_POST["Alter"]=="") $_POST["Alter"] = 0;
-
$SQL = "INSERT INTO `User` (".
"`Nick` , ". "`Name` , ".
"`Vorname`, ". "`Alter` , ".