From 9714e01b942cb34f4f8d8a524d9c3b802d324e61 Mon Sep 17 00:00:00 2001 From: Magnus Manske Date: Sun, 8 Feb 2004 13:05:28 +0000 Subject: [PATCH] hopefully fixing caption bug 892460 --- includes/OutputPage.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 8d2e9d3ac0..b964f038ac 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -732,10 +732,13 @@ function doTableStuff ( $t ) foreach ( $after AS $theline ) { $z = "" ; - $tra = array_pop ( $ltr ) ; - if ( !array_pop ( $tr ) ) $z = "\n" ; - array_push ( $tr , true ) ; - array_push ( $ltr , "" ) ; + if ( $fc != "+" ) + { + $tra = array_pop ( $ltr ) ; + if ( !array_pop ( $tr ) ) $z = "\n" ; + array_push ( $tr , true ) ; + array_push ( $ltr , "" ) ; + } $l = array_pop ( $ltd ) ; if ( array_pop ( $td ) ) $z = "" . $z ; -- 2.20.1