Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
hackint
Laravel Feed
Commits
497e1ffd
Commit
497e1ffd
authored
Jun 02, 2016
by
Roumen Damianoff
Browse files
ported fix for #53
parent
86ffacc2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Roumen/Feed/Feed.php
View file @
497e1ffd
...
...
@@ -133,12 +133,12 @@ class Feed
foreach
(
$this
->
items
as
$k
=>
$v
)
{
$this
->
items
[
$k
][
'title'
]
=
html
_
entit
y_decode
(
strip_tags
(
$this
->
items
[
$k
][
'title'
]));
$this
->
items
[
$k
][
'title'
]
=
htmlentit
ies
(
strip_tags
(
$this
->
items
[
$k
][
'title'
]));
$this
->
items
[
$k
][
'pubdate'
]
=
$this
->
formatDate
(
$this
->
items
[
$k
][
'pubdate'
],
$format
);
}
$channel
=
array
(
'title'
=>
html
_
entit
y_decode
(
strip_tags
(
$this
->
title
)),
'title'
=>
htmlentit
ies
(
strip_tags
(
$this
->
title
)),
'description'
=>
$this
->
description
,
'logo'
=>
$this
->
logo
,
'icon'
=>
$this
->
icon
,
...
...
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