| @@ -22,12 +22,10 @@ | ||
| 22 | 22 | public function html( $attr, $content, $tag ) { |
| 23 | 23 | $id = $this->get_snippet_id( $attr, WINP_SNIPPET_TYPE_UNIVERSAL ); |
| 24 | 24 | |
| 25 | 25 | if ( ! $id ) { |
| 26 | - if ( current_user_can( 'manage_options' ) || ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ) { | |
| 27 | - /* translators: %s: Shortcode tag name */ | |
| 28 | - echo '<span style="color:red">' . sprintf( esc_html__( '[%s]: PHP snippets error (not passed the snippet ID)', 'insert-php' ), esc_html( $tag ) ) . '</span>'; | |
| 29 | - } | |
| 26 | + /* translators: %s: Shortcode tag name */ | |
| 27 | + echo '<span style="color:red">' . sprintf( esc_html__( '[%s]: PHP snippets error (not passed the snippet ID)', 'insert-php' ), esc_html( $tag ) ) . '</span>'; | |
| 30 | 28 | |
| 31 | 29 | return; |
| 32 | 30 | } |
| 33 | 31 | |
| @@ -63,16 +61,7 @@ | ||
| 63 | 61 | |
| 64 | 62 | // Track shortcode execution. |
| 65 | 63 | WINP_Plugin::app()->get_execute_object()->track_shortcode_snippet( $id ); |
| 66 | 64 | |
| 67 | - // Initialize error handler. | |
| 68 | - WINP_Error_Handler::init(); | |
| 69 | - | |
| 70 | - // Set current snippet context for error handler. | |
| 71 | - WINP_Error_Handler::set_current_snippet( $id, $snippet->post_title, $snippet_content ); | |
| 72 | - | |
| 73 | 65 | eval( '?>' . $snippet_content . '<?php ' ); |
| 74 | - | |
| 75 | - // Clear snippet context after execution. | |
| 76 | - WINP_Error_Handler::clear_current_snippet(); | |
| 77 | 66 | } |
| 78 | 67 | } |