X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FSqlDataUpdate.php;h=79dcdc5918bfaa59fd9973a255e7b6799e2d5fa7;hb=12f5ab9a3f40128b26a72a742602740c633b6fcc;hp=d0ead9ad8b2207f19f769b5c4240b925c98229e2;hpb=5e2ac408f888043b3c62a42b5c9c9ece5ddaf419;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/SqlDataUpdate.php b/includes/SqlDataUpdate.php index d0ead9ad8b..79dcdc5918 100644 --- a/includes/SqlDataUpdate.php +++ b/includes/SqlDataUpdate.php @@ -48,7 +48,7 @@ abstract class SqlDataUpdate extends DataUpdate { public function __construct( $withTransaction = true ) { global $wgAntiLockFlags; - parent::__construct( ); + parent::__construct(); if ( $wgAntiLockFlags & ALF_NO_LINK_LOCK ) { $this->mOptions = array(); @@ -76,7 +76,7 @@ abstract class SqlDataUpdate extends DataUpdate { // NOTE: nested transactions are not supported, only start a transaction if none is open if ( $this->mDb->trxLevel() === 0 ) { - $this->mDb->begin( get_class( $this ) . '::beginTransaction' ); + $this->mDb->begin( get_class( $this ) . '::beginTransaction' ); $this->mHasTransaction = true; } }