merge latest master.
[lhc/web/wiklou.git] / includes / LinksUpdate.php
index 0bdffea..1188b9a 100644 (file)
@@ -49,7 +49,7 @@ class LinksUpdate extends SqlDataUpdate {
         * @param $recursive Boolean: queue jobs for recursive updates?
         */
        function __construct( $title, $parserOutput, $recursive = true ) {
-               parent::__construct( );
+               parent::__construct( false ); // no implicit transaction
 
                if ( !( $title instanceof Title ) ) {
                        throw new MWException( "The calling convention to LinksUpdate::LinksUpdate() has changed. " .
@@ -824,7 +824,7 @@ class LinksDeletionUpdate extends SqlDataUpdate {
         * @param $page WikiPage Page we are updating
         */
        function __construct( Title $title ) {
-               parent::__construct( );
+               parent::__construct( false ); // no implicit transaction
 
                $this->mTitle = $title;