Making WordPress.org

Ticket #4246: #4246.diff

File #4246.diff, 2.6 KB (added by BharatKambariya, 5 years ago)
  • profiles.wordpress.org/public_html/wp-content/plugins/wporg-profiles-association-handler/wporg-profiles-association-handler.php

     
    8787                        return $activated;
    8888                }
    8989
    90                 /**
    91                  * Disables ALL group-related activities being reported to activity stream.
    92                  *
    93                  * @param string $component Component.
    94                  */
     90        /**
     91         * Disables ALL group-related activities being reported to activity stream.
     92         *
     93         * @param string $component Component.
     94         * @return bool
     95         */
    9596                public function disable_group_activity_reporting( $component ) {
    9697                        if ( buddypress()->groups->id == $component ) {
    9798                                $component = false;
  • wordcamp.org/public_html/wp-content/mu-plugins/wcorg-misc.php

     
    2727
    2828/**
    2929 * Include pages in the list of posts types that can have comments closed automatically
     30 *
     31 * @param $post_types
     32 * @return array
    3033 */
    3134function wcorg_close_comments_for_post_types( $post_types ) {
    3235        $post_types[] = 'page';
  • wordpress.org/public_html/style/wp4.css

     
    4545#wporg-footer ul li a {
    4646        color: #21759b;
    4747        text-decoration: none;
     48        text-decoration-skip-ink: none;
    4849        font-weight: normal;
    4950}
    5051
  • wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php

     
    11<?php
    2 
    32/**
    43 * WP.org Themes' functions and definitions.
    54 *
     
    355354
    356355/**
    357356 * Override the embed template with our own
     357 *
     358 * @param $template
     359 * @return string
    358360 */
    359361function wporg_themes_embed_template( $template ) {
    360362        $theme_embed_template = locate_template( 'embed.php' );