Code Duplication    Length = 4-4 lines in 2 locations

modules/publicize/ui.php 1 location

@@ 567-570 (lines=4) @@
564
					foreach ( $services as $name => $connections ) {
565
						foreach ( $connections as $connection ) {
566
							$connection_data = '';
567
							if ( method_exists( $connection, 'get_meta' ) )
568
								$connection_data = $connection->get_meta( 'connection_data' );
569
							elseif ( ! empty( $connection['connection_data'] ) )
570
								$connection_data = $connection['connection_data'];
571
572
							/**
573
							 * Filter whether a post should be publicized to a given service.

modules/publicize/publicize.php 1 location

@@ 358-361 (lines=4) @@
355
		foreach ( (array) $this->get_services( 'connected' ) as $service_name => $connections ) {
356
			foreach ( $connections as $connection ) {
357
				$connection_data = '';
358
				if ( method_exists( $connection, 'get_meta' ) )
359
					$connection_data = $connection->get_meta( 'connection_data' );
360
				elseif ( ! empty( $connection['connection_data'] ) )
361
					$connection_data = $connection['connection_data'];
362
363
				/** This action is documented in modules/publicize/ui.php */
364
				if ( false == apply_filters( 'wpas_submit_post?', $submit_post, $post_id, $service_name, $connection_data ) ) {