1.1.1 BUG: Flawed output with patch
-
Error message is printed outside of the actual output where it should be.
--- wp-rss-retriever\wp-rss-retriever.php.orig 2015-01-18 21:54:20.000000000 +-0300 +++ wp-rss-retriever\wp-rss-retriever.php 2016-08-24 13:40:43.000000000 +-0300 @@ -64,13 +64,13 @@ } endif; $output = '<div class="wp_rss_retriever">'; $output .= '<ul class="wp_rss_retriever_list">'; if ( !isset($maxitems) ) : - $output .= '<li>' . _e( 'No items', 'wp-rss-retriever' ) . '</li>'; + $output .= '<li>' . __( 'No items', 'wp-rss-retriever' ) . '</li>'; else : //loop through each feed item and display each item. foreach ( $rss_items as $item ) : //variables $content = $item->get_content(); $the_title = $item->get_title();
The topic ‘1.1.1 BUG: Flawed output with patch’ is closed to new replies.