Skip to content

Commit

Permalink
refs #1717 : modified - html headers
Browse files Browse the repository at this point in the history
  • Loading branch information
inureyes committed Jan 31, 2015
1 parent b018b1a commit ad0cca6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 219 deletions.
6 changes: 3 additions & 3 deletions library/view/html.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

function printSimpleHtmlHeader($title) {
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko">
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $title;?></title>
</head>
<body>
Expand Down
212 changes: 0 additions & 212 deletions library/view/mobileView.php

This file was deleted.

1 change: 0 additions & 1 deletion library/view/ownerView.php
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,6 @@ function refreshUploadButton() {
}

function getAttachmentValue($attachment) {
global $g_attachmentFolderPath;
if (strpos($attachment['mime'], 'image') === 0) {
return "{$attachment['name']}|width=\"{$attachment['width']}\" height=\"{$attachment['height']}\" alt=\"" . _text('사용자 삽입 이미지') . "\"";
} else {
Expand Down
6 changes: 3 additions & 3 deletions library/view/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
/// See the GNU General Public License for more details. (/documents/LICENSE, /documents/COPYRIGHT)

function printHtmlHeader($title = '') {
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko">
?><!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $title;?></title>
</head>
<body>
Expand Down

0 comments on commit ad0cca6

Please # to comment.