From: Platonides Date: Tue, 19 Jul 2011 20:06:01 +0000 (+0000) Subject: Follow up r91561. Use canonical class names. X-Git-Tag: 1.31.0-rc.0~28742 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=e15b20546f6032a5972429780be5ec04155dae53;p=lhc%2Fweb%2Fwiklou.git Follow up r91561. Use canonical class names. --- diff --git a/includes/specials/SpecialUndelete.php b/includes/specials/SpecialUndelete.php index 200e0887c0..e2bd40e45d 100644 --- a/includes/specials/SpecialUndelete.php +++ b/includes/specials/SpecialUndelete.php @@ -80,7 +80,7 @@ class PageArchive { ); // bug 19725 - $suppressedText = REVISION::DELETED_TEXT | REVISION::DELETED_RESTRICTED; + $suppressedText = Revision::DELETED_TEXT | Revision::DELETED_RESTRICTED; if( !$wgUser->isAllowed( 'suppressrevision' ) ) { $conds[] = $dbr->bitAnd('ar_deleted', $suppressedText ) . ' != ' . $suppressedText;