summaryrefslogtreecommitdiff
path: root/includes/SpecialLog.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialLog.php')
-rw-r--r--includes/SpecialLog.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/SpecialLog.php b/includes/SpecialLog.php
index a9e8573a..e32d2240 100644
--- a/includes/SpecialLog.php
+++ b/includes/SpecialLog.php
@@ -28,11 +28,11 @@
*/
function wfSpecialLog( $par = '' ) {
global $wgRequest;
- $logReader =& new LogReader( $wgRequest );
+ $logReader = new LogReader( $wgRequest );
if( $wgRequest->getVal( 'type' ) == '' && $par != '' ) {
$logReader->limitType( $par );
}
- $logViewer =& new LogViewer( $logReader );
+ $logViewer = new LogViewer( $logReader );
$logViewer->show();
}