Merge "Expose LinksUpdate recursive flag with a getter"
[lhc/web/wiklou.git] / includes / deferred / LinksUpdate.php
index c4e8341..2bfdc0e 100644 (file)
@@ -1197,4 +1197,14 @@ class LinksUpdate extends DataUpdate {
 
                return $this->db;
        }
+
+       /**
+        * Whether or not this LinksUpdate will also update pages which transclude the
+        * current page or otherwise depend on it.
+        *
+        * @return bool
+        */
+       public function isRecursive() {
+               return $this->mRecursive;
+       }
 }