Changeset 2657
- Timestamp:
- 03/01/2016 06:39:44 PM (9 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-custom-stats/stats/project.php
r2360 r2657 20 20 global $wpdb, $gp_table_prefix; 21 21 22 add_action( ' translation_created', array( $this, 'translation_created' ) );23 add_action( ' translation_saved', array( $this, 'translation_saved' ) );22 add_action( 'gp_translation_created', array( $this, 'translation_created' ) ); 23 add_action( 'gp_translation_saved', array( $this, 'translation_saved' ) ); 24 24 add_action( 'gp_originals_imported', array( $this, 'originals_imported' ), 10, 5 ); 25 25 -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-custom-stats/stats/user.php
r2360 r2657 13 13 global $wpdb, $gp_table_prefix; 14 14 15 add_action( ' translation_created', array( $this, 'translation_created' ) );16 add_action( ' translation_saved', array( $this, 'translation_saved' ) );15 add_action( 'gp_translation_created', array( $this, 'translation_created' ) ); 16 add_action( 'gp_translation_saved', array( $this, 'translation_saved' ) ); 17 17 18 18 $wpdb->user_translations_count = $gp_table_prefix . 'user_translations_count'; -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-slack-integrations/integrations/log-warnings.php
r2360 r2657 28 28 29 29 add_action( 'gp_warning_discarded', array( $this, 'warning_discarded' ), 10, 5 ); 30 add_action( ' translation_created', array( $this, 'translation_created' ) );31 add_action( ' translation_saved', array( $this, 'translation_saved' ) );30 add_action( 'gp_translation_created', array( $this, 'translation_created' ) ); 31 add_action( 'gp_translation_saved', array( $this, 'translation_saved' ) ); 32 32 } 33 33
Note: See TracChangeset
for help on using the changeset viewer.