From 20d904bc38b4d06c0cb93a927944054177d2db73 Mon Sep 17 00:00:00 2001
From: Peter Rotich <protich@gmail.com>
Date: Mon, 26 Mar 2012 10:35:55 -0400
Subject: [PATCH] Fix typo

---
 include/class.dispatcher.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/class.dispatcher.php b/include/class.dispatcher.php
index 507b2f9fe..da9fb8628 100644
--- a/include/class.dispatcher.php
+++ b/include/class.dispatcher.php
@@ -30,7 +30,7 @@ class Dispatcher {
         if ($this->file) { $this->lazy_load(); }
         # Support HTTP method emulation with the _method GET argument
         if (isset($_GET['_method'])) { 
-            $_SERVER['REQUEST_METHOD'] = strtoupper($_GET['method']);
+            $_SERVER['REQUEST_METHOD'] = strtoupper($_GET['_method']);
             unset($_GET['_method']);
         }
         foreach ($this->urls as $matcher) {
-- 
GitLab