From b64299da7d8db343478303e2f8347f563d4f7231 Mon Sep 17 00:00:00 2001 From: Roman Zhuravlev Date: Sun, 11 Aug 2013 13:08:34 +0300 Subject: [PATCH] Fix in RequestPanel --- framework/yii/debug/panels/RequestPanel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/yii/debug/panels/RequestPanel.php b/framework/yii/debug/panels/RequestPanel.php index 333c01b..6aab689 100644 --- a/framework/yii/debug/panels/RequestPanel.php +++ b/framework/yii/debug/panels/RequestPanel.php @@ -67,7 +67,7 @@ EOD; 'content' => $this->renderData('Routing', $data) . $this->renderData('$_GET', $this->data['GET']) . $this->renderData('$_POST', $this->data['POST']) - . $this->renderData('$_FILES', $this->data['POST']) + . $this->renderData('$_FILES', $this->data['FILES']) . $this->renderData('$_COOKIE', $this->data['COOKIE']), 'active' => true, ),