| @@ -1,3 +1,7 @@ | ||
| 1 | -<strong>Name</strong>: <?php _e( $name );?> <br> | |
| 2 | -<strong>Docs</strong>: <?php _e( $article );?> <br> | |
| 3 | -<?php _e( $message_text );?> | |
| 1 | +<strong><?php | |
| 2 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 3 | + exit; | |
| 4 | +} | |
| 5 | +esc_html_e( 'Name', 'betterdocs' ); ?></strong>: <?php echo esc_html( $name ); ?> <br> | |
| 6 | +<strong><?php esc_html_e( 'Docs', 'betterdocs' ); ?></strong>: <?php echo esc_html( $article ); ?> <br> | |
| 7 | +<?php echo esc_html( $message_text ); ?> | |