summaryrefslogtreecommitdiff
path: root/dev-php/PEAR-Text_Wiki_Mediawiki/files/0.2.0-constructor.patch
blob: edd8e3572de0b1f0071bb8c3705bc007ea3820f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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)) {