From b225e0507904a30d418daab5553a2463a764cd04 Mon Sep 17 00:00:00 2001 From: Catrope Date: Fri, 22 Jun 2012 15:36:35 -0700 Subject: [PATCH] Rename getCopyWarn() to getCopyrightWarning() and make it public and static This way other code will be able to obtain the copyright warning without duplicating the logic. Kept getCopyWarn() around for backwards compatibility Change-Id: I439d2b8a19c35716b208ae7f9926cd92ab482777 --- includes/EditPage.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 6e6f825f81..f533016284 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -2414,7 +2414,16 @@ HTML '' ); } + /** + * Get the copyright warning + * + * Renamed to getCopyrightWarning(), old name kept around for backwards compatibility + */ protected function getCopywarn() { + return self::getCopyrightWarning( $this->mTitle ); + } + + public static function getCopyrightWarning( $title ) { global $wgRightsText; if ( $wgRightsText ) { $copywarnMsg = array( 'copyrightwarning', @@ -2425,7 +2434,7 @@ HTML '[[' . wfMsgForContent( 'copyrightpage' ) . ']]' ); } // Allow for site and per-namespace customization of contribution/copyright notice. - wfRunHooks( 'EditPageCopyrightWarning', array( $this->mTitle, &$copywarnMsg ) ); + wfRunHooks( 'EditPageCopyrightWarning', array( $title, &$copywarnMsg ) ); return "
\n" . call_user_func_array( "wfMsgNoTrans", $copywarnMsg ) . "\n
"; -- 2.20.1