Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 0eb75c8

Browse files
author
Michael Grauer
committed
BUG: refs #0278. 3 more instances of charset changed to utf-8.
1 parent 25cb6bc commit 0eb75c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/AppController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ public function postDispatch()
332332
$this->view->generatedTimer = round((microtime(true) - START_TIME), 3);
333333
if(Zend_Registry::get('configGlobal')->environment != 'testing')
334334
{
335-
header('Content-Type: text/html; charset=ISO-8859-1');
335+
header('Content-Type: text/html; charset=UTF-8');
336336
}
337337
}
338338

core/public/js/layout/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ function loadAjaxDynamicBar(name,url)
388388

389389
$.ajax({
390390
url: $('.webroot').val()+url,
391-
contentType: "application/x-www-form-urlencoded;charset=ISO-8859-15",
391+
contentType: "application/x-www-form-urlencoded;charset=UTF-8",
392392
success: function(data) {
393393
$("div.TopDynamicLoading").hide();
394394
$('div.TopDynamicContent').hide();
@@ -423,7 +423,7 @@ function loadDialog(name,url)
423423
$("div.MainDialogLoading").show();
424424
$.ajax({
425425
url: $('.webroot').val()+url,
426-
contentType: "application/x-www-form-urlencoded;charset=ISO-8859-15",
426+
contentType: "application/x-www-form-urlencoded;charset=UTF-8",
427427
success: function(data) {
428428
$('div.MainDialogContent').html(data);
429429
$("div.MainDialogLoading").hide();

0 commit comments

Comments
 (0)