From 77840256721d8fafefcdb15d54d861b8c16c9029 Mon Sep 17 00:00:00 2001 From: urs_hunkler Date: Wed, 18 Jul 2007 21:08:21 +0000 Subject: [PATCH] added returns to make debugging easier --- lib/custom_corners_lib.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/custom_corners_lib.php b/lib/custom_corners_lib.php index 373f657169..0ceb93e207 100755 --- a/lib/custom_corners_lib.php +++ b/lib/custom_corners_lib.php @@ -16,7 +16,8 @@ * @param boolean $return, return as string or just print it */ function print_custom_corners_start($clearfix=false, $return=false) { - $output = '
'; + $output = '
'."\n"; + $output .= '
'; $output .= "\n"; $output .= '
'; $output .= (!empty($clearfix)) ? '
' : '
'; @@ -37,7 +38,8 @@ function print_custom_corners_start($clearfix=false, $return=false) { function print_custom_corners_end($return=false) { $output = '
'; $output .= "\n"; - $output .= '
'; + $output .= '
'."\n"; + $output .= '
'; if ($return) { return $output; -- 2.39.5