summaryrefslogtreecommitdiff
path: root/dev-php/PEAR-Text_Wiki_Mediawiki/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-php/PEAR-Text_Wiki_Mediawiki/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-php/PEAR-Text_Wiki_Mediawiki/files')
-rw-r--r--dev-php/PEAR-Text_Wiki_Mediawiki/files/0.2.0-constructor.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-php/PEAR-Text_Wiki_Mediawiki/files/0.2.0-constructor.patch b/dev-php/PEAR-Text_Wiki_Mediawiki/files/0.2.0-constructor.patch
deleted file mode 100644
index edd8e3572de0..000000000000
--- a/dev-php/PEAR-Text_Wiki_Mediawiki/files/0.2.0-constructor.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -aurN a/Text/Wiki/Mediawiki.php b/Text/Wiki/Mediawiki.php
---- a/Text/Wiki/Mediawiki.php 2014-06-04 23:24:45.000000000 -0400
-+++ b/Text/Wiki/Mediawiki.php 2018-02-14 13:36:18.777893414 -0500
-@@ -87,7 +87,7 @@
- * @param array $rules The set of rules to load for this object.
- */
- function __construct($rules = null) {
-- parent::Text_Wiki($rules);
-+ parent::__construct($rules);
- $this->addPath('parse', $this->fixPath(dirname(__FILE__)).'Parse/Mediawiki');
- }
- }
-diff -aurN a/Text/Wiki/Parse/Mediawiki/Url.php b/Text/Wiki/Parse/Mediawiki/Url.php
---- a/Text/Wiki/Parse/Mediawiki/Url.php 2014-06-04 23:24:45.000000000 -0400
-+++ b/Text/Wiki/Parse/Mediawiki/Url.php 2018-02-14 13:40:21.974024459 -0500
-@@ -87,7 +87,7 @@
- */
- function __construct(&$obj)
- {
-- parent::Text_Wiki_Parse($obj);
-+ parent::__construct($obj);
-
- // convert the list of recognized schemes to a regex-safe string,
- // where the pattern delim is a slash
-diff -aurN a/Text/Wiki/Parse/Mediawiki/Wikilink.php b/Text/Wiki/Parse/Mediawiki/Wikilink.php
---- a/Text/Wiki/Parse/Mediawiki/Wikilink.php 2014-06-04 23:24:45.000000000 -0400
-+++ b/Text/Wiki/Parse/Mediawiki/Wikilink.php 2018-02-14 13:40:46.030542359 -0500
-@@ -99,7 +99,7 @@
- function __construct(&$obj)
- {
- $default = $this->conf;
-- parent::Text_Wiki_Parse($obj);
-+ parent::__construct($obj);
-
- // override config options for image if specified
- if (in_array('Image', $this->wiki->disable)) {