diff options
author | Anders Sandblad <runeson@gmail.com> | 2016-06-14 08:48:12 +0200 |
---|---|---|
committer | Anders Sandblad <runeson@gmail.com> | 2016-06-14 08:48:12 +0200 |
commit | 59752844d1903a528e765e8b80dafa2a1ca140ad (patch) | |
tree | b7b9c57cfafc85a0d61306479ed42115c376dab8 /_test/core/phpQuery-onefile.php | |
parent | 9bbceb0ecf8217605f6821b09510799cbe4a33e9 (diff) | |
download | dokuwiki-59752844d1903a528e765e8b80dafa2a1ca140ad.tar.gz dokuwiki-59752844d1903a528e765e8b80dafa2a1ca140ad.zip |
Fixed broken links to php.net and redirecting pages to php.net
Diffstat (limited to '_test/core/phpQuery-onefile.php')
-rw-r--r-- | _test/core/phpQuery-onefile.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_test/core/phpQuery-onefile.php b/_test/core/phpQuery-onefile.php index 402cf8e49..115724853 100644 --- a/_test/core/phpQuery-onefile.php +++ b/_test/core/phpQuery-onefile.php @@ -388,7 +388,7 @@ class DOMDocumentWrapper { phpQuery::debug("Full markup load (XML), appending charset '$charset'"); $markup = $this->charsetAppendToXML($markup, $charset); } - // see http://pl2.php.net/manual/en/book.dom.php#78929 + // see http://php.net/manual/en/book.dom.php#78929 // LIBXML_DTDLOAD (>= PHP 5.1) // does XML ctalogues works with LIBXML_NONET // $this->document->resolveExternals = true; @@ -401,7 +401,7 @@ class DOMDocumentWrapper { ? $this->document->loadXML($markup) : @$this->document->loadXML($markup); } else { - /** @link http://pl2.php.net/manual/en/libxml.constants.php */ + /** @link http://php.net/manual/en/libxml.constants.php */ $libxmlStatic = phpQuery::$debug === 2 ? LIBXML_DTDLOAD|LIBXML_DTDATTR|LIBXML_NONET : LIBXML_DTDLOAD|LIBXML_DTDATTR|LIBXML_NONET|LIBXML_NOWARNING|LIBXML_NOERROR; |