From 3219219c29b492b0998fb8614a9d6923abb2778b Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Tue, 21 Feb 2012 22:04:43 +0000 Subject: [PATCH] Per Aaron, follow-up r112036: add __METHOD__ to DatabaseBase::rollback() too --- includes/Title.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1