<!-- saved from url=(0031)http://xlino.com/customize.diff -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Index: wp-admin/customize.php
|
|
|
|
| 80 | 80 | submit_button( $save_text, 'primary save', 'save', false ); |
| 81 | 81 | ?> |
| 82 | 82 | <span class="spinner"></span> |
| 83 | | <a class="back button" href="<?php echo esc_url( $return ? $return : admin_url( 'themes.php' ) ); ?>"> |
| 84 | | <?php _e( 'Cancel' ); ?> |
| 85 | | </a> |
| | 83 | <?php |
| | 84 | $close_url = $return ? $return : admin_url( 'themes.php' ); |
| | 85 | $close_url = apply_filters( 'customize_close_url', $close_url ); |
| | 86 | ?> |
| | 87 | <a class="back button" href="<?php echo esc_url( $close_url ); ?>"> |
| | 88 | <?php _e( 'Cancel' ); ?> |
| | 89 | </a> |
| 86 | 90 | </div> |
| 87 | 91 | |
| 88 | 92 | <?php |