From f1aaddfb50f80374d1b622a887b493d4aeb1bcde Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Sun, 22 Jan 2017 15:01:01 -0800 Subject: [PATCH] Markdown: Fix broken layout in news page Fixes #22204 --- core/print_api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/print_api.php b/core/print_api.php index fc1f320d84..e54db8dddc 100644 --- a/core/print_api.php +++ b/core/print_api.php @@ -498,7 +498,7 @@ function print_news_item_option_list() { * @return void */ function print_news_entry( $p_headline, $p_body, $p_poster_id, $p_view_state, $p_announcement, $p_date_posted ) { - $t_headline = string_display_links( $p_headline ); + $t_headline = string_display_line_links( $p_headline ); $t_body = string_display_links( $p_body ); $t_date_posted = date( config_get( 'normal_date_format' ), $p_date_posted );