File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1414 * @link http://cakephp.org CakePHP(tm) Project
1515 * @license http://www.opensource.org/licenses/mit-license.php MIT License
1616 */
17+ use Cake \Error \Debugger ;
1718use Cake \Utility \Inflector ;
1819?>
1920
@@ -31,7 +32,7 @@ use Cake\Utility\Inflector;
3132 <?php foreach ($ app as $ key => $ val ): ?>
3233 <tr>
3334 <td><?= h ($ key ) ?> </td>
34- <td><?= h ($ val ) ?> </td>
35+ <td><?= h (Debugger:: exportVar ( $ val) ) ?> </td>
3536 </tr>
3637 <?php endforeach ; ?>
3738 </tbody>
@@ -56,7 +57,7 @@ use Cake\Utility\Inflector;
5657 <?php foreach ($ cake as $ key => $ val ): ?>
5758 <tr>
5859 <td><?= h ($ key ) ?> </td>
59- <td><?= h ($ val ) ?> </td>
60+ <td><?= h (Debugger:: exportVar ( $ val) ) ?> </td>
6061 </tr>
6162 <?php endforeach ; ?>
6263 </tbody>
@@ -107,7 +108,7 @@ use Cake\Utility\Inflector;
107108 <?php foreach ($ hidef as $ key => $ val ): ?>
108109 <tr>
109110 <td><?= h ($ key ) ?> </td>
110- <td><?= h ($ val ) ?> </td>
111+ <td><?= h (Debugger:: exportVar ( $ val) ) ?> </td>
111112 </tr>
112113 <?php endforeach ; ?>
113114 </tbody>
You can’t perform that action at this time.
0 commit comments