From: pk910 Date: Sat, 10 Dec 2011 13:50:07 +0000 (+0100) Subject: fixed iauth.php (added missing " %" to iauth_return output) X-Git-Url: http://git.pk910.de/?p=iauth.git;a=commitdiff_plain;h=67b3e8e1d1c429c8233730d079b27abef1c0a56b fixed iauth.php (added missing " %" to iauth_return output) --- diff --git a/iauth.php b/iauth.php index 28fb5ff..c89f055 100644 --- a/iauth.php +++ b/iauth.php @@ -102,7 +102,7 @@ function iauth_return($class = NULL, $ident = NULL, $host = NULL, $ip = NULL, $m if($host === NULL || strlen($host) == 0) $host = "$"; if($ip === NULL || strlen($ip) == 0) $ip = "$"; if($mode === NULL || strlen($mode) == 0) $mode = "$"; - echo "$class $ident $host $ip $mode"; + echo "$class $ident $host $ip $mode %"; exit(0); }