From 6d355786d5d6d1ce6d813e02c5898af806fbdc88 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Mon, 21 Mar 2011 21:26:16 +0000 Subject: [PATCH] Fix variable typo introduced in r83282 --- includes/Title.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Title.php b/includes/Title.php index 15bd8f4ebf..d21ed35695 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -3054,7 +3054,7 @@ class Title { } $destFile = wfLocalFile( $nt ); - if ( !$wgUser->isAllowed( 'reupload-shared' ) && !$destfile->exists() && wfFindFile( $nt ) ) { + if ( !$wgUser->isAllowed( 'reupload-shared' ) && !$destFile->exists() && wfFindFile( $nt ) ) { $errors[] = array( 'file-exists-sharedrepo' ); } -- 2.20.1