some auth debugging nonsense
[gwvp-mini.git] / gwvpmini / gwvpmini_web.php
index 8c2a5c1..97afbaa 100644 (file)
@@ -26,7 +26,7 @@ function gwvpmini_goWeb()
        // this is important for our plugin structure later on - the key on the array serves an an ordering method
        ksort($CALL_ME_FUNCTIONS);
        foreach($CALL_ME_FUNCTIONS as $key => $val) {
-               error_log("checking callmefunction $key as $val");
+               //error_log("checking callmefunction $key as $val");
                $callme = $val();
                if($callme !== false) {
                        $callme();
@@ -224,7 +224,7 @@ function gwvpmini_BodyBuilder()
 // builds the tail structure
 function gwvpmini_TailBuilder()
 {
-       echo "<font size=\"-1\"><i>Copyright 2011, PJR - licensed under GPL</i></font>";
+       echo "<br><br><hr><font size=\"-1\"><b><a href=\"http://github.com/takigama/GWVP\">GWVP</a></b> - <i>Copyright 2011, 2012 PJR - <a href=\"http://www.gnu.org/copyleft/gpl.html\">GPL</a></i></font>";
 }
 
 function gwvpmini_emailToUserLink($email)
@@ -243,13 +243,13 @@ function gwvpmini_emailToUserLink($email)
 function gwvpmini_fourZeroThree()
 {
        error_log("403 called");
-       header("HTTP/1.0 403 Permission Denied");
+       header("HTTP/1.1 403 Permission Denied");
 }
 
 function gwvpmini_fourZeroFour()
 {
        error_log("404 called");
-       header("HTTP/1.0 404 No Such Thing");
+       header("HTTP/1.1 404 No Such Thing");
 }