X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..HEAD:/examples/writer/remote/lib/request.php diff --git a/examples/writer/remote/lib/request.php b/examples/writer/remote/lib/request.php index 8d506623..a3cc5619 100644 --- a/examples/writer/remote/lib/request.php +++ b/examples/writer/remote/lib/request.php @@ -44,7 +44,9 @@ class Request { $raw .= $kb; } $params = json_decode(stripslashes($raw)); - $this->params = $params->data; + if ($params) { + $this->params = $params->data; + } } }