Merge pull request #10396 from shivapoudel/docblock-fix

Fix docblock for wc_back_link function
This commit is contained in:
Claudio Sanches 2016-02-21 16:40:20 -03:00
commit f52b018279
1 changed files with 3 additions and 3 deletions

View File

@ -938,9 +938,9 @@ function wc_get_shipping_zone( $package ) {
/**
* Outputs a "back" link so admin screens can easily jump back a page.
* @param string $label Title of the page to return to
* @param string $url URL of the page to return to
*
* @param string $label Title of the page to return to.
* @param string $url URL of the page to return to.
*/
function wc_back_link( $label, $url ) {
echo '<small class="wc-admin-breadcrumb"><a href="' . esc_url( $url ) . '" title="' . esc_attr( $label ) . '">&#x21a9;</a></small>';