Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
617941e0
Commit
617941e0
authored
May 29, 2014
by
Klimov Paul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missing $message var reference removed from mail layouts
parent
124c7e84
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
html.php
apps/advanced/common/mail/layouts/html.php
+1
-2
html.php
apps/basic/mail/layouts/html.php
+1
-2
tutorial-mailing.md
docs/guide/tutorial-mailing.md
+1
-2
No files found.
apps/advanced/common/mail/layouts/html.php
View file @
617941e0
...
...
@@ -3,7 +3,6 @@ use yii\helpers\Html;
/**
* @var \yii\web\View $this
* @var \yii\mail\MessageInterface $message
* @var string $content
*/
?>
...
...
@@ -11,7 +10,7 @@ use yii\helpers\Html;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=
<?=
$message
->
getCharset
()
?>
"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=
<?=
Yii
::
$app
->
charset
?>
"
/>
<title>
<?=
Html
::
encode
(
$this
->
title
)
?>
</title>
<?php
$this
->
head
()
?>
</head>
...
...
apps/basic/mail/layouts/html.php
View file @
617941e0
...
...
@@ -3,7 +3,6 @@ use yii\helpers\Html;
/**
* @var \yii\web\View $this
* @var \yii\mail\MessageInterface $message
* @var string $content
*/
?>
...
...
@@ -11,7 +10,7 @@ use yii\helpers\Html;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=
<?=
$message
->
getCharset
()
?>
"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=
<?=
Yii
::
$app
->
charset
?>
"
/>
<title>
<?=
Html
::
encode
(
$this
->
title
)
?>
</title>
<?php
$this
->
head
()
?>
</head>
...
...
docs/guide/tutorial-mailing.md
View file @
617941e0
...
...
@@ -142,7 +142,6 @@ use yii\helpers\Html;
/**
* @var \yii\web\View $this view component instance
* @var \yii\mail\BaseMessage $message instance of newly created mail message
* @var string $content main view render result
*/
?>
...
...
@@ -150,7 +149,7 @@ use yii\helpers\Html;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=
<?=
$message
->
getCharset
()
?>
"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=
<?=
Yii
::
$app
->
charset
?>
"
/>
<style
type=
"text/css"
>
.heading
{
...
}
.list
{
...
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment