Code Duplication    Length = 11-11 lines in 2 locations

includes/wc-template-functions.php 2 locations

@@ 1401-1411 (lines=11) @@
1398
	}
1399
}
1400
1401
if ( ! function_exists( 'woocommerce_widget_shopping_cart_button_view_cart' ) ) {
1402
1403
	/**
1404
	 * Output the proceed to checkout button.
1405
	 *
1406
	 * @subpackage	Cart
1407
	 */
1408
	function woocommerce_widget_shopping_cart_button_view_cart() {
1409
		echo '<a href="' . esc_url( wc_get_cart_url() ) . '" class="button wc-forward">' . __( 'View Cart', 'woocommerce' ) . '</a>';
1410
	}
1411
}
1412
1413
if ( ! function_exists( 'woocommerce_widget_shopping_cart_proceed_to_checkout' ) ) {
1414
@@ 1413-1423 (lines=11) @@
1410
	}
1411
}
1412
1413
if ( ! function_exists( 'woocommerce_widget_shopping_cart_proceed_to_checkout' ) ) {
1414
1415
	/**
1416
	 * Output the proceed to checkout button.
1417
	 *
1418
	 * @subpackage	Cart
1419
	 */
1420
	function woocommerce_widget_shopping_cart_proceed_to_checkout() {
1421
		echo '<a href="' . esc_url( wc_get_checkout_url() ) . '" class="button checkout wc-forward">' . __( 'Checkout', 'woocommerce' ) . '</a>';
1422
	}
1423
}
1424
1425
/** Mini-Cart *************************************************************/
1426