From 2eb86e22ba31ab7d4a0c194d42b5b4404d164cc1 Mon Sep 17 00:00:00 2001 From: MatmaRex Date: Sun, 25 Aug 2013 00:01:21 +0200 Subject: [PATCH] ChangeTags: Mark public functions (all of them) as public Change-Id: Ide005e15c827f1a7759c9d405da800cb670a8d39 --- includes/ChangeTags.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/includes/ChangeTags.php b/includes/ChangeTags.php index 97e80f2a63..029911ffb0 100644 --- a/includes/ChangeTags.php +++ b/includes/ChangeTags.php @@ -34,7 +34,7 @@ class ChangeTags { * - classes: Array of strings: CSS classes used in the generated html, one class for each tag * */ - static function formatSummaryRow( $tags, $page ) { + public static function formatSummaryRow( $tags, $page ) { global $wgLang; if ( !$tags ) { @@ -71,7 +71,7 @@ class ChangeTags { * @return String: Short description of the tag from "mediawiki:tag-$tag" if this message exists, * html-escaped version of $tag otherwise */ - static function tagDescription( $tag ) { + public static function tagDescription( $tag ) { $msg = wfMessage( "tag-$tag" ); return $msg->exists() ? $msg->parse() : htmlspecialchars( $tag ); } @@ -90,7 +90,7 @@ class ChangeTags { * * @exception MWException when $rc_id, $rev_id and $log_id are all null */ - static function addTags( $tags, $rc_id = null, $rev_id = null, $log_id = null, $params = null ) { + public static function addTags( $tags, $rc_id = null, $rev_id = null, $log_id = null, $params = null ) { if ( !is_array( $tags ) ) { $tags = array( $tags ); } @@ -174,7 +174,7 @@ class ChangeTags { * * @throws MWException When unable to determine appropriate JOIN condition for tagging */ - static function modifyDisplayQuery( &$tables, &$fields, &$conds, + public static function modifyDisplayQuery( &$tables, &$fields, &$conds, &$join_conds, &$options, $filter_tag = false ) { global $wgRequest, $wgUseTagFilter; @@ -255,7 +255,7 @@ class ChangeTags { * * @return Array of strings: tags */ - static function listDefinedTags() { + public static function listDefinedTags() { // Caching... global $wgMemc; $key = wfMemcKey( 'valid-tags' ); -- 2.20.1