fixed iauth.php (added missing " %" to iauth_return output)
authorpk910 <philipp@zoelle1.de>
Sat, 10 Dec 2011 13:50:07 +0000 (14:50 +0100)
committerpk910 <philipp@zoelle1.de>
Sat, 10 Dec 2011 13:50:07 +0000 (14:50 +0100)
iauth.php

index 28fb5ff2d522b0ed14741b5153867a735a316c09..c89f0557f24c188451fdffc8ad1c183c3bbecdcb 100644 (file)
--- 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);
 }