From: Vincent Vanwaelscappel Date: Fri, 12 Jul 2019 15:23:47 +0000 (+0200) Subject: #2757 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=73d8a6abfc761e0f1ccf84076b891d5398c1dd0e;p=cubist_cms-back.git #2757 --- diff --git a/src/app/Magic/PageData.php b/src/app/Magic/PageData.php index fa3d927..802b8bd 100644 --- a/src/app/Magic/PageData.php +++ b/src/app/Magic/PageData.php @@ -84,9 +84,6 @@ class PageData implements \ArrayAccess public function get($offset, $default = null) { $res = Arr::get($this->_data, $offset, $default); - if ($offset == 'form') { - dd($res); - } if (is_array($res) && isset($res[App::getLocale()])) { $res = $res[App::getLocale()]; }