Changeset 2673189
- Timestamp:
- 02/04/2022 11:09:36 PM (4 years ago)
- Location:
- wp-post-modal
- Files:
-
- 4 edited
-
tags/3.7.0/admin/class-wp-post-modal-admin.php (modified) (3 diffs)
-
tags/3.7.0/public/class-wp-post-modal-public.php (modified) (1 diff)
-
trunk/admin/class-wp-post-modal-admin.php (modified) (3 diffs)
-
trunk/public/class-wp-post-modal-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-post-modal/tags/3.7.0/admin/class-wp-post-modal-admin.php
r2672646 r2673189 630 630 ?> 631 631 <div class="notice notice-success is-dismissible"> 632 <?php echo esc_html($message); ?>632 <?php echo html_entity_decode(esc_html($message)); ?> 633 633 <button type="button" class="notice-dismiss"> 634 634 <span class="screen-reader-text">Dismiss this notice.</span> … … 647 647 ?> 648 648 <div class="notice notice-success is-dismissible admin-notice-installed"> 649 <?php echo esc_html($message); ?>649 <?php echo html_entity_decode(esc_html($message)); ?> 650 650 <button type="button" class="notice-dismiss"> 651 651 <span class="screen-reader-text">Dismiss this notice.</span> … … 671 671 <div class="notice notice-success is-dismissible admin-notice-remote"> 672 672 <div class="notice-content"> 673 <?php echo esc_html($message); ?>673 <?php echo html_entity_decode(esc_html($message)); ?> 674 674 </div> 675 675 -
wp-post-modal/tags/3.7.0/public/class-wp-post-modal-public.php
r2671812 r2673189 139 139 $HTML .= '</div>'; 140 140 141 echo esc_html($HTML);141 echo html_entity_decode(esc_html($HTML)); 142 142 } 143 143 -
wp-post-modal/trunk/admin/class-wp-post-modal-admin.php
r2672646 r2673189 630 630 ?> 631 631 <div class="notice notice-success is-dismissible"> 632 <?php echo esc_html($message); ?>632 <?php echo html_entity_decode(esc_html($message)); ?> 633 633 <button type="button" class="notice-dismiss"> 634 634 <span class="screen-reader-text">Dismiss this notice.</span> … … 647 647 ?> 648 648 <div class="notice notice-success is-dismissible admin-notice-installed"> 649 <?php echo esc_html($message); ?>649 <?php echo html_entity_decode(esc_html($message)); ?> 650 650 <button type="button" class="notice-dismiss"> 651 651 <span class="screen-reader-text">Dismiss this notice.</span> … … 671 671 <div class="notice notice-success is-dismissible admin-notice-remote"> 672 672 <div class="notice-content"> 673 <?php echo esc_html($message); ?>673 <?php echo html_entity_decode(esc_html($message)); ?> 674 674 </div> 675 675 -
wp-post-modal/trunk/public/class-wp-post-modal-public.php
r2671812 r2673189 139 139 $HTML .= '</div>'; 140 140 141 echo esc_html($HTML);141 echo html_entity_decode(esc_html($HTML)); 142 142 } 143 143
Note: See TracChangeset
for help on using the changeset viewer.