replace hr with br to not depend on the display of hr

main
fuzzykitten 2025-05-10 16:24:35 -04:00
parent a6a06a5b18
commit 848f4a32d5
1 changed files with 13 additions and 13 deletions

View File

@ -199,11 +199,11 @@ function print_thread($db, $sub, $css, $settings, $org_id, $link_to_reply)
} }
if ( !empty($move_message) ) { if ( !empty($move_message) ) {
$html_string .= "<hr><small>|$move_message|</small>"; $html_string .= "<br><small>|$move_message|</small>";
} }
if ( !empty($edit_message) ) { if ( !empty($edit_message) ) {
$html_string .= "<hr><small>|$edit_message|</small>"; $html_string .= "<br><small>|$edit_message|</small>";
} }
$html_string .= '</div>'; $html_string .= '</div>';
@ -316,11 +316,11 @@ function print_overboard($db, $css, $settings, $page)
} }
if ( !empty($move_message) ) { if ( !empty($move_message) ) {
$html_string .= "<hr><small>|$move_message|</small>"; $html_string .= "<br><small>|$move_message|</small>";
} }
if ( !empty($edit_message) ) { if ( !empty($edit_message) ) {
$html_string .= "<hr><small>|$edit_message|</small>"; $html_string .= "<br><small>|$edit_message|</small>";
} }
$html_string .= '</div>'; $html_string .= '</div>';
@ -430,11 +430,11 @@ function print_individual_feed($db, $css, $settings, $ex_subs, $in_subs)
} }
if ( !empty($move_message) ) { if ( !empty($move_message) ) {
$html_string .= "<hr><small>|$move_message|</small>"; $html_string .= "<br><small>|$move_message|</small>";
} }
if ( !empty($edit_message) ) { if ( !empty($edit_message) ) {
$html_string .= "<hr><small>|$edit_message|</small>"; $html_string .= "<br><small>|$edit_message|</small>";
} }
$html_string .= '</div>'; $html_string .= '</div>';
@ -616,7 +616,7 @@ function print_footer_reply($sub, $total_posts, $css, $msg, $org_id, $settings)
function print_footer($left_section, $mid_section, $right_section) function print_footer($left_section, $mid_section, $right_section)
{ {
$html_string = "<hr><div id=\"footer\">" $html_string = "<br><div id=\"footer\">"
. "<div class=alignleft>$left_section</div>" . "<div class=alignleft>$left_section</div>"
. "<div class=aligncenter>$mid_section</div>" . "<div class=aligncenter>$mid_section</div>"
. "<div class=alignright>$right_section</div>" . "<div class=alignright>$right_section</div>"
@ -759,12 +759,12 @@ function print_replies($db, $sub, $post_id, $org_id, $settings, $css)
} }
if ( !empty($answer_post_move_message) ) { if ( !empty($answer_post_move_message) ) {
$html_string .= "<hr><small>|$answer_post_move_message|" $html_string .= "<br><small>|$answer_post_move_message|"
. "</small>"; . "</small>";
} }
if ( !empty($answer_post_edit_message) ) { if ( !empty($answer_post_edit_message) ) {
$html_string .= "<hr><small>|$answer_post_edit_message|" $html_string .= "<br><small>|$answer_post_edit_message|"
. "</small>"; . "</small>";
} }
@ -800,11 +800,11 @@ function print_replies($db, $sub, $post_id, $org_id, $settings, $css)
} }
if ( !empty($last_post_move_message) ) { if ( !empty($last_post_move_message) ) {
$html_string .= "<hr><small>|$last_post_move_message|</small>"; $html_string .= "<br><small>|$last_post_move_message|</small>";
} }
if ( !empty($last_post_edit_message) ) { if ( !empty($last_post_edit_message) ) {
$html_string .= "<hr><small>|$last_post_edit_message|</small>"; $html_string .= "<br><small>|$last_post_edit_message|</small>";
} }
$html_string .= '</div>'; $html_string .= '</div>';
@ -994,11 +994,11 @@ function print_sub($db, $sub, $css, $settings, $page)
} }
if ( !empty($move_message) ) { if ( !empty($move_message) ) {
$html_string .= "<hr><small>|$move_message|</small>"; $html_string .= "<br><small>|$move_message|</small>";
} }
if ( !empty($edit_message) ) { if ( !empty($edit_message) ) {
$html_string .= "<hr><small>|$edit_message|</small>"; $html_string .= "<br><small>|$edit_message|</small>";
} }
$html_string .= '</div>'; $html_string .= '</div>';