Matmarex has uploaded a new change for review.
https://gerrit.wikimedia.org/r/80780
Change subject: ChangeTags: Mark public functions (all of them) as public
......................................................................
ChangeTags: Mark public functions (all of them) as public
Change-Id: Ide005e15c827f1a7759c9d405da800cb670a8d39
---
M includes/ChangeTags.php
1 file changed, 5 insertions(+), 5 deletions(-)
git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core
refs/changes/80/80780/1
diff --git a/includes/ChangeTags.php b/includes/ChangeTags.php
index 97e80f2..029911f 100644
--- a/includes/ChangeTags.php
+++ b/includes/ChangeTags.php
@@ -34,7 +34,7 @@
* - 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 @@
* @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 @@
*
* @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 @@
*
* @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 @@
*
* @return Array of strings: tags
*/
- static function listDefinedTags() {
+ public static function listDefinedTags() {
// Caching...
global $wgMemc;
$key = wfMemcKey( 'valid-tags' );
--
To view, visit https://gerrit.wikimedia.org/r/80780
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ide005e15c827f1a7759c9d405da800cb670a8d39
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Matmarex <[email protected]>
_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits