Code Duplication    Length = 4-4 lines in 2 locations

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 ) ) {

modules/publicize/ui.php 1 location

@@ 602-605 (lines=4) @@
599
			foreach ( $services as $name => $connections ) {
600
				foreach ( $connections as $connection ) {
601
					$connection_data = '';
602
					if ( method_exists( $connection, 'get_meta' ) )
603
						$connection_data = $connection->get_meta( 'connection_data' );
604
					elseif ( ! empty( $connection['connection_data'] ) )
605
						$connection_data = $connection['connection_data'];
606
607
					/**
608
					 * Filter whether a post should be publicized to a given service.