From 5e0f34ea559964c0c2ceca9005d79e7345e69dcb Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Fri, 22 Mar 2002 12:47:13 +0000 Subject: [PATCH] * don't start table cells with a space in borderless tables --- pear/PEAR/Frontend/CLI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pear/PEAR/Frontend/CLI.php b/pear/PEAR/Frontend/CLI.php index dfbe06b6f2..b5bc8bc435 100644 --- a/pear/PEAR/Frontend/CLI.php +++ b/pear/PEAR/Frontend/CLI.php @@ -187,7 +187,7 @@ class PEAR_Frontend_CLI extends PEAR } } if (empty($border)) { - $cellstart = ' '; + $cellstart = ''; $cellend = ' '; $rowend = ''; $padrowend = false; -- 2.50.1