Completed
Push — develop ( 87b48c...882b48 )
by Gennady
23:47 queued 03:49
created
includes/extensions/duplicate-entry/class-duplicate-entry.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 	public static function get_duplicate_link( $entry, $view_id, $post_id = null ) {
261 261
 		self::getInstance()->set_entry( $entry );
262 262
 
263
-        $base = GravityView_API::directory_link( $post_id ? : $view_id, true );
263
+		$base = GravityView_API::directory_link( $post_id ? : $view_id, true );
264 264
 
265 265
 		if ( empty( $base ) ) {
266 266
 			gravityview()->log->error( 'Post ID does not exist: {post_id}', array( 'post_id' => $post_id ) );
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
 			'action'	=> 'duplicate',
272 272
 			'entry_id'	=> $entry['id'],
273 273
 			'gvid' => $view_id,
274
-            'view_id' => $view_id,
274
+			'view_id' => $view_id,
275 275
 		), $base );
276 276
 
277 277
 		return add_query_arg( 'duplicate', wp_create_nonce( self::get_nonce_key( $entry['id'] ) ), $actionurl );
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
 		 * @since 2.5
471 471
 		 * @param  array $duplicated_entry The duplicated entry
472 472
 		 * @param  array $entry The original entry
473
-		*/
473
+		 */
474 474
 		do_action( 'gravityview/duplicate-entry/duplicated', $duplicated_entry, $entry );
475 475
 
476 476
 		gravityview()->log->debug( 'Duplicate response: {duplicate_response}', array( 'duplicate_response' => $duplicate_response ) );
Please login to merge, or discard this patch.