Code Duplication    Length = 11-11 lines in 2 locations

includes/wc-template-functions.php 2 locations

@@ 1415-1425 (lines=11) @@
1412
	}
1413
}
1414
1415
if ( ! function_exists( 'woocommerce_widget_shopping_cart_button_view_cart' ) ) {
1416
1417
	/**
1418
	 * Output the proceed to checkout button.
1419
	 *
1420
	 * @subpackage	Cart
1421
	 */
1422
	function woocommerce_widget_shopping_cart_button_view_cart() {
1423
		echo '<a href="' . esc_url( wc_get_cart_url() ) . '" class="button wc-forward">' . __( 'View Cart', 'woocommerce' ) . '</a>';
1424
	}
1425
}
1426
1427
if ( ! function_exists( 'woocommerce_widget_shopping_cart_proceed_to_checkout' ) ) {
1428
@@ 1427-1437 (lines=11) @@
1424
	}
1425
}
1426
1427
if ( ! function_exists( 'woocommerce_widget_shopping_cart_proceed_to_checkout' ) ) {
1428
1429
	/**
1430
	 * Output the proceed to checkout button.
1431
	 *
1432
	 * @subpackage	Cart
1433
	 */
1434
	function woocommerce_widget_shopping_cart_proceed_to_checkout() {
1435
		echo '<a href="' . esc_url( wc_get_checkout_url() ) . '" class="button checkout wc-forward">' . __( 'Checkout', 'woocommerce' ) . '</a>';
1436
	}
1437
}
1438
1439
/** Mini-Cart *************************************************************/
1440