@@ -58,7 +58,12 @@ discard block |
||
| 58 | 58 | <tr> |
| 59 | 59 | <td data-export-label="WP Multisite"><?php _e( 'WP Multisite', 'give' ); ?>:</td> |
| 60 | 60 | <td class="help"><span class="give-tooltip give-icon give-icon-question" data-tooltip="<?php echo esc_attr( __( 'Whether or not you have WordPress Multisite enabled.', 'give' ) ); ?>"></span></td> |
| 61 | - <td><?php if ( is_multisite() ) echo '<span class="dashicons dashicons-yes"></span>'; else echo '–'; ?></td> |
|
| 61 | + <td><?php if ( is_multisite() ) { |
|
| 62 | + echo '<span class="dashicons dashicons-yes"></span>'; |
|
| 63 | +} else { |
|
| 64 | + echo '–'; |
|
| 65 | +} |
|
| 66 | +?></td> |
|
| 62 | 67 | </tr> |
| 63 | 68 | <tr> |
| 64 | 69 | <td data-export-label="WP Memory Limit"><?php _e( 'WP Memory Limit', 'give' ); ?>:</td> |
@@ -86,9 +91,12 @@ discard block |
||
| 86 | 91 | <td> |
| 87 | 92 | <?php if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) : ?> |
| 88 | 93 | <mark class="yes"><span class="dashicons dashicons-yes"></span></mark> |
| 89 | - <?php else : ?> |
|
| 94 | + <?php else { |
|
| 95 | + : ?> |
|
| 90 | 96 | <mark class="no">–</mark> |
| 91 | - <?php endif; ?> |
|
| 97 | + <?php endif; |
|
| 98 | +} |
|
| 99 | +?> |
|
| 92 | 100 | </td> |
| 93 | 101 | </tr> |
| 94 | 102 | <tr> |
@@ -97,9 +105,12 @@ discard block |
||
| 97 | 105 | <td> |
| 98 | 106 | <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?> |
| 99 | 107 | <mark class="no">–</mark> |
| 100 | - <?php else : ?> |
|
| 108 | + <?php else { |
|
| 109 | + : ?> |
|
| 101 | 110 | <mark class="yes"><span class="dashicons dashicons-yes"></span></mark> |
| 102 | - <?php endif; ?> |
|
| 111 | + <?php endif; |
|
| 112 | +} |
|
| 113 | +?> |
|
| 103 | 114 | </td> |
| 104 | 115 | </tr> |
| 105 | 116 | <tr> |
@@ -182,7 +182,9 @@ |
||
| 182 | 182 | ?> |
| 183 | 183 | |
| 184 | 184 | <?php |
| 185 | -else: |
|
| 185 | +else { |
|
| 186 | + : |
|
| 186 | 187 | _e( 'You need to login to edit your profile.', 'give' ); |
| 188 | +} |
|
| 187 | 189 | echo give_login_form(); |
| 188 | 190 | endif; |