From: Alexandre Emsenhuber Date: Tue, 21 Feb 2012 22:04:43 +0000 (+0000) Subject: Per Aaron, follow-up r112036: add __METHOD__ to DatabaseBase::rollback() too X-Git-Tag: 1.31.0-rc.0~24584 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=3219219c29b492b0998fb8614a9d6923abb2778b;p=lhc%2Fweb%2Fwiklou.git Per Aaron, follow-up r112036: add __METHOD__ to DatabaseBase::rollback() too --- diff --git a/includes/Title.php b/includes/Title.php index 8d87373f01..9e7ea4dd8d 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -3484,7 +3484,7 @@ class Title { $err = $this->moveToInternal( $nt, $reason, $createRedirect ); if ( is_array( $err ) ) { # @todo FIXME: What about the File we have already moved? - $dbw->rollback(); + $dbw->rollback( __METHOD__ ); return $err; }