]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/html/HttpRequest.class.php
Some refactoring in translation files.
[timetracker.git] / WEB-INF / lib / html / HttpRequest.class.php
index cea6122619c391f01cc5a51f9db52d69ae6fbcf3..cd66a8cc6440cc4b36a72a54147d702d8f7b5d4d 100644 (file)
@@ -32,7 +32,12 @@ class ttHttpRequest {
     return isset( $_SERVER['REQUEST_METHOD'] ) ? $_SERVER['REQUEST_METHOD'] : false;
   }
 
-  // The isPost function determines if a request method is POST.
+  // The isGet function determines if a request method is a GET.
+  function isGet() {
+    return ($this->getMethod() == 'GET');
+  }
+
+  // The isPost function determines if a request method is a POST.
   function isPost() {
     return ($this->getMethod() == 'POST');
   }