Changeset 8156
- Timestamp:
- 01/28/2019 07:45:42 PM (6 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-plugin-directory/inc/language-pack/class-build-listener.php
r4016 r8156 43 43 } 44 44 45 $time = date( 'r');46 $message = "_Time: {$time}_\nLanguage packs for {$args['plugin']} in process...\n";45 $timestamp = time(); 46 $message = ''; 47 47 48 48 // Build in a separate process. … … 64 64 'color' => '#c32283', 65 65 'mrkdwn_in' => [ 'text' ], 66 'ts' => $timestamp, 66 67 ]; 67 68 $this->slack( $attachment ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-plugin-directory/inc/sync/class-translation-sync.php
r7175 r8156 88 88 $sub_project_counterpart = $this->project_mapping[ $sub_project ]; 89 89 90 $time = date( 'r' ); 91 $message = "_Time: {$time}_\nTranslation sync from {$sub_project} to {$sub_project_counterpart} in process...\n"; 92 $updates = 0; 90 $timestamp = time(); 91 $message = ''; 92 $updates = 0; 93 93 94 foreach ( $translation_sets as $translation_set ) { 94 95 if ( 0 == $translation_set->current_count() ) { … … 122 123 'color' => '#00a0d2', 123 124 'mrkdwn_in' => [ 'text' ], 125 'ts' => $timestamp, 124 126 ]; 125 127 $this->slack( $attachment ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-theme-directory/inc/class-plugin.php
r4091 r8156 65 65 */ 66 66 public function import_or_update_theme_on_status_change( $args ) { 67 $time = date( 'r');68 $message = "_Time: {$time}_\nImport of theme {$args['theme']} {$args['version']} in process...\n";67 $timestamp = time(); 68 $message = ''; 69 69 70 70 // Import in a separate process. … … 87 87 'color' => '#82878c', 88 88 'mrkdwn_in' => [ 'text' ], 89 'ts' => $timestamp, 89 90 ]; 90 91 $this->slack( $attachment ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-theme-directory/inc/language-pack/class-build-listener.php
r4024 r8156 43 43 } 44 44 45 $time = date( 'r');46 $message = "_Time: {$time}_\nLanguage packs for {$args['theme']} in process...\n";45 $timestamp = time(); 46 $message = ''; 47 47 48 48 // Build in a separate process. … … 64 64 'color' => '#c32283', 65 65 'mrkdwn_in' => [ 'text' ], 66 'ts' => $timestamp, 66 67 ]; 67 68 $this->slack( $attachment );
Note: See TracChangeset
for help on using the changeset viewer.