修訂 | 14d3296cd838083739238911e95b1c39eeaf4e5a (tree) |
---|---|
時間 | 2021-09-26 21:20:43 |
作者 | umorigu <umorigu@gmai...> |
Commiter | umorigu |
BugTrack/2514 PHP8: Link_autoalias constructor
@@ -779,9 +779,13 @@ class Link_autoalias extends Link | ||
779 | 779 | |
780 | 780 | function Link_autoalias($start) |
781 | 781 | { |
782 | + $this->__construct($start); | |
783 | + } | |
784 | + function __construct($start) | |
785 | + { | |
782 | 786 | global $autoalias, $aliaspage; |
783 | 787 | |
784 | - parent::Link($start); | |
788 | + parent::__construct($start); | |
785 | 789 | |
786 | 790 | if (! $autoalias || ! file_exists(CACHE_DIR . PKWK_AUTOALIAS_REGEX_CACHE) || $this->page == $aliaspage) |
787 | 791 | { |
@@ -827,7 +831,11 @@ class Link_autoalias_a extends Link_autoalias | ||
827 | 831 | { |
828 | 832 | function Link_autoalias_a($start) |
829 | 833 | { |
830 | - parent::Link_autoalias($start); | |
834 | + $this->__construct($start); | |
835 | + } | |
836 | + function __construct($start) | |
837 | + { | |
838 | + parent::__construct($start); | |
831 | 839 | } |
832 | 840 | function get_pattern() |
833 | 841 | { |