| @@ -21,11 +21,13 @@ | ||
| 21 | 21 | */ |
| 22 | 22 | public function html( $attr, $content, $tag ) { |
| 23 | 23 | $id = $this->get_snippet_id( $attr, WINP_SNIPPET_TYPE_AD ); |
| 24 | 24 | |
| 25 | - if ( ! $id && ( current_user_can( 'manage_options' ) || ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ) ) { | |
| 26 | - /* translators: %s: Shortcode tag name */ | |
| 27 | - echo '<span style="color:red">' . sprintf( esc_html__( '[%s]: Advertisement snippets error (not passed the snippet ID)', 'insert-php' ), esc_html( $tag ) ) . '</span>'; | |
| 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]: Advertisement snippets error (not passed the snippet ID)', 'insert-php' ), esc_html( $tag ) ) . '</span>'; | |
| 29 | + } | |
| 28 | 30 | |
| 29 | 31 | return; |
| 30 | 32 | } |
| 31 | 33 | |