DataObjects/Events.php
authorChris <chris@roojs.com>
Fri, 5 Oct 2012 07:19:58 +0000 (15:19 +0800)
committerChris <chris@roojs.com>
Fri, 5 Oct 2012 07:19:58 +0000 (15:19 +0800)
DataObjects/Events.php

index f0ae084..d431d23 100644 (file)
@@ -420,11 +420,11 @@ class Pman_Core_DataObjects_Events extends DB_DataObject
             }
         }
          
-        file_put_contents($file, json_encode(var_export(array(
+        file_put_contents($file, var_export(array(
             'REQUEST_URI' => empty($_SERVER['REQUEST_URI']) ? 'cli' : $_SERVER['REQUEST_URI'],
             'GET' => empty($_GET) ? array() : $_GET,
             'POST' =>$p,
-        )), true));
+        )), true);
         
     }
 }