From: Raimond Spekking Date: Tue, 12 Jun 2007 20:18:13 +0000 (+0000) Subject: Show deletion log at page creation to logged in users too. Recently to anons only. X-Git-Tag: 1.31.0-rc.0~52571 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=d58544ee9135643f4506c3ce8892789da33b6f41;p=lhc%2Fweb%2Fwiklou.git Show deletion log at page creation to logged in users too. Recently to anons only. --- diff --git a/includes/EditPage.php b/includes/EditPage.php index fa8e04c50e..b67189f771 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -596,8 +596,8 @@ class EditPage { $wgOut->addWikiText( wfMsg( 'newarticletext' ) ); } else { $wgOut->addWikiText( wfMsg( 'newarticletextanon' ) ); - $this->showDeletionLog( $wgOut ); } + $this->showDeletionLog( $wgOut ); } }