Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Зуев Егор
/
wiki.dev
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Authored by
Dan Brown
2015-10-11 17:45:32 +0100
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Commit
1520bde1911b96986580b1828d9620c49486bdca
1520bde1
1 parent
5af6656f
Changed DomNodeList access to work with hhvm
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
app/Repos/PageRepo.php
app/Repos/PageRepo.php
View file @
1520bde
...
...
@@ -99,7 +99,7 @@ class PageRepo
$doc
->
loadHTML
(
$htmlText
);
$container
=
$doc
->
documentElement
;
$body
=
$container
->
childNodes
[
0
]
;
$body
=
$container
->
childNodes
->
item
(
0
)
;
$childNodes
=
$body
->
childNodes
;
// Ensure no duplicate ids are used
...
...
Please
register
or
sign in
to post a comment