Making WordPress.org

Changeset 12247


Ignore:
Timestamp:
11/16/2022 09:53:56 AM (2 years ago)
Author:
amieiro
Message:

Translate: Replace some hardcoded tables with a table check.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-customizations/inc/cli/class-stats.php

    r12244 r12247  
    144144        global $wpdb;
    145145
    146         $wpdb->gp_translation_sets        = 'translate_translation_sets';
    147         $wpdb->project_translation_status = 'translate_project_translation_status';
    148         $wpdb->gp_projects                = 'translate_projects';
    149         $wpdb->gp_originals               = 'translate_originals';
    150         $wpdb->gp_translations            = 'translate_translations';
    151         $wpdb->user_translations_count    = 'translate_user_translations_count';
     146        // This value is only set in the production site (translate.wordpress.org).
     147        // This check avoids to fire the cron job from another sites.
     148        if ( ! isset( $wpdb->project_translation_status ) ) {
     149            return;
     150        }
    152151
    153152        $this->echo_the_values = $echo_the_values;
Note: See TracChangeset for help on using the changeset viewer.