Skip to content

Commit

Permalink
Adding charset as it was previously omitted.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jul 23, 2011
1 parent fc08784 commit 2141b49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/webroot/index.php
Expand Up @@ -78,4 +78,4 @@
App::uses('Dispatcher', 'Routing');

$Dispatcher = new Dispatcher();
$Dispatcher->dispatch(new CakeRequest(), new CakeResponse());
$Dispatcher->dispatch(new CakeRequest(), new CakeResponse(array('charset' => Configure::read('App.encoding'))));
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/skel/webroot/index.php
Expand Up @@ -77,4 +77,4 @@

App::uses('Dispatcher', 'Routing');
$Dispatcher = new Dispatcher();
$Dispatcher->dispatch(new CakeRequest(), new CakeResponse());
$Dispatcher->dispatch(new CakeRequest(), new CakeResponse(array('charset' => Configure::read('App.encoding'))));

0 comments on commit 2141b49

Please sign in to comment.