diff options
| author | Horus3 | 2014-03-16 19:23:28 +0100 |
|---|---|---|
| committer | Horus3 | 2014-03-16 19:23:28 +0100 |
| commit | 151f569f196dd38a8e0cbeb888be55a57f4cc9d3 (patch) | |
| tree | 0bbb787701949939e3993c0264a79bd76aefe639 /www/functions/func_invite.php | |
| parent | ac364e0f8859d42478156a5e841c33dd23ef3d1a (diff) | |
| download | files.iamfabulous.de-151f569f196dd38a8e0cbeb888be55a57f4cc9d3.tar.gz | |
Final fix.
Diffstat (limited to 'www/functions/func_invite.php')
| -rwxr-xr-x | www/functions/func_invite.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/functions/func_invite.php b/www/functions/func_invite.php index 8ed1139..ad87a21 100755 --- a/www/functions/func_invite.php +++ b/www/functions/func_invite.php @@ -12,7 +12,7 @@ function invite($db){ $invite = $invite_ar[0]; if($invite <= 0){ - return 'INVITE_INVITES'; + return INVITE_INVITES; } /*Generates the invite key => [-_0-9a-zA-Z]{11}*/ @@ -46,9 +46,9 @@ function invite($db){ mail($email, "Invite", $subject, "From: mail@iamfabulous.de"); - return 'INVITE_SUCCESSFULL'; + return INVITE_SUCCESSFULL; } else { - return 'INVITE_DATABASE'; + return INVITE_DATABASE; } } |
