Browse Source

Merge pull request #741 from Zhuravljov/master

Fix in RequestPanel
tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
17cf3b5edd
  1. 2
      framework/yii/debug/panels/RequestPanel.php

2
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,
),

Loading…
Cancel
Save