From 49667e3d2d904feb7d00edfa930cc19a6cb8c0f3 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Mon, 26 Jan 2015 12:12:27 -0500 Subject: [PATCH] Squash logging --- airtime_mvc/application/controllers/plugins/Acl_plugin.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/airtime_mvc/application/controllers/plugins/Acl_plugin.php b/airtime_mvc/application/controllers/plugins/Acl_plugin.php index 388c786d3..b7b852129 100644 --- a/airtime_mvc/application/controllers/plugins/Acl_plugin.php +++ b/airtime_mvc/application/controllers/plugins/Acl_plugin.php @@ -196,8 +196,6 @@ class Zend_Controller_Plugin_Acl extends Zend_Controller_Plugin_Abstract $current_namespace = new Zend_Session_Namespace('csrf_namespace'); $observed_csrf_token = $token; $expected_csrf_token = $current_namespace->authtoken; - Logging::error("Observed: " . $observed_csrf_token); - Logging::error("Expected: " . $expected_csrf_token); return ($observed_csrf_token == $expected_csrf_token); }