From: Siebrand Mazeland Date: Sun, 25 Apr 2010 22:57:12 +0000 (+0000) Subject: Follow-up 65339: fix 'pass by reference' warning as reported in bug 23322. X-Git-Tag: 1.31.0-rc.0~37014 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=5cc909a7caca8fb44d89d90e349ac5c78fd5fddb;p=lhc%2Fweb%2Fwiklou.git Follow-up 65339: fix 'pass by reference' warning as reported in bug 23322. --- diff --git a/includes/specials/SpecialUpload.php b/includes/specials/SpecialUpload.php index 7a789ae29c..2679a57504 100644 --- a/includes/specials/SpecialUpload.php +++ b/includes/specials/SpecialUpload.php @@ -242,7 +242,7 @@ class SpecialUpload extends SpecialPage { $desiredTitleObj = Title::newFromText( $this->mDesiredDestName, NS_FILE ); $delNotice = ''; // empty by default if ( $desiredTitleObj instanceof Title && !$desiredTitleObj->exists() ) { - LogEventsList::showLogExtract( &$delNotice, array( 'delete', 'move' ), + LogEventsList::showLogExtract( $delNotice, array( 'delete', 'move' ), $desiredTitleObj->getPrefixedText(), '', array( 'lim' => 10, 'conds' => array( "log_action != 'revision'" ),