mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Specify encoding in <meta>
Summary: Phabricator sends information about encoding in Content-Type header but when I save the HTML page then this information is lost. Test Plan: / Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1561
This commit is contained in:
parent
b7e0f97d33
commit
c0efecb561
1 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* Copyright 2011 Facebook, Inc.
|
||||
* Copyright 2012 Facebook, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -68,6 +68,7 @@ class AphrontPageView extends AphrontView {
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>{$title}</title>
|
||||
{$head}
|
||||
</head>
|
||||
|
|
Loading…
Reference in a new issue