Browse Source

debug panel : change json_encode/decode to serialise/unserialise to prevent non-UTF characters error

tags/2.0.0-beta
Eugene Kuzminov 11 years ago
parent
commit
b9de474cce
  1. 6
      framework/yii/debug/LogTarget.php
  2. 4
      framework/yii/debug/controllers/DefaultController.php
  3. 2
      framework/yii/debug/panels/RequestPanel.php

6
framework/yii/debug/LogTarget.php

@ -49,7 +49,7 @@ class LogTarget extends Target
if (!is_file($indexFile)) { if (!is_file($indexFile)) {
$manifest = array(); $manifest = array();
} else { } else {
$manifest = json_decode(file_get_contents($indexFile), true); $manifest = unserialize(file_get_contents($indexFile));
} }
$request = Yii::$app->getRequest(); $request = Yii::$app->getRequest();
$manifest[$this->tag] = $summary = array( $manifest[$this->tag] = $summary = array(
@ -68,8 +68,8 @@ class LogTarget extends Target
$data[$id] = $panel->save(); $data[$id] = $panel->save();
} }
$data['summary'] = $summary; $data['summary'] = $summary;
file_put_contents($dataFile, json_encode($data)); file_put_contents($dataFile, serialize($data));
file_put_contents($indexFile, json_encode($manifest)); file_put_contents($indexFile, serialize($manifest));
} }
/** /**

4
framework/yii/debug/controllers/DefaultController.php

@ -76,7 +76,7 @@ class DefaultController extends Controller
if ($this->_manifest === null) { if ($this->_manifest === null) {
$indexFile = $this->module->dataPath . '/index.json'; $indexFile = $this->module->dataPath . '/index.json';
if (is_file($indexFile)) { if (is_file($indexFile)) {
$this->_manifest = array_reverse(json_decode(file_get_contents($indexFile), true), true); $this->_manifest = array_reverse(unserialize(file_get_contents($indexFile)), true);
} else { } else {
$this->_manifest = array(); $this->_manifest = array();
} }
@ -89,7 +89,7 @@ class DefaultController extends Controller
$manifest = $this->getManifest(); $manifest = $this->getManifest();
if (isset($manifest[$tag])) { if (isset($manifest[$tag])) {
$dataFile = $this->module->dataPath . "/$tag.json"; $dataFile = $this->module->dataPath . "/$tag.json";
$data = json_decode(file_get_contents($dataFile), true); $data = unserialize(file_get_contents($dataFile));
foreach ($this->module->panels as $id => $panel) { foreach ($this->module->panels as $id => $panel) {
if (isset($data[$id])) { if (isset($data[$id])) {
$panel->tag = $tag; $panel->tag = $tag;

2
framework/yii/debug/panels/RequestPanel.php

@ -151,7 +151,7 @@ EOD;
} }
$rows = array(); $rows = array();
foreach ($values as $name => $value) { foreach ($values as $name => $value) {
$rows[] = '<tr><th style="width: 200px;">' . Html::encode($name) . '</th><td>' . Html::encode(var_export($value, true)) . '</td></tr>'; $rows[] = '<tr><th style="width: 200px;">' . Html::encode($name) . '</th><td>' . htmlspecialchars(var_export($value, true), ENT_QUOTES|ENT_SUBSTITUTE, \Yii::$app->charset, TRUE) . '</td></tr>';
} }
$rows = implode("\n", $rows); $rows = implode("\n", $rows);
return <<<EOD return <<<EOD

Loading…
Cancel
Save