make docs more clear, method can only be used as is since 1.18, not 1.16
authorJeroen De Dauw <jeroendedauw@users.mediawiki.org>
Tue, 13 Dec 2011 20:45:35 +0000 (20:45 +0000)
committerJeroen De Dauw <jeroendedauw@users.mediawiki.org>
Tue, 13 Dec 2011 20:45:35 +0000 (20:45 +0000)
includes/Linker.php
includes/specials/SpecialWantedpages.php

index 454a35f..35cf756 100644 (file)
@@ -135,7 +135,10 @@ class Linker {
         *      name of the target).
         * link() replaces the old functions in the makeLink() family.
         *
-        * @since 1.16
+        * @since 1.18 Method exists since 1.16 as non-static, made static in 1.18.
+        * You can call it using this if you want to keep compat with these:
+        * $linker = class_exists( 'DummyLinker' ) ? new DummyLinker() : new Linker();
+        * $linker->link( ... );
         *
         * @param $target        Title  Can currently only be a Title, but this may
         *   change to support Images, literal URLs, etc.
index fa86042..4624b35 100644 (file)
@@ -27,6 +27,7 @@
  * @ingroup SpecialPage
  */
 class WantedPagesPage extends WantedQueryPage {
+       
        function __construct( $name = 'Wantedpages' ) {
                parent::__construct( $name );
                $this->mIncludable = true;