From 65a239e585239810a1f799146fb350148c107c8d Mon Sep 17 00:00:00 2001 From: chriskl Date: Thu, 10 Jun 2004 07:16:38 +0000 Subject: [PATCH] prevent wrapping when there are long column comments --- tblproperties.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tblproperties.php b/tblproperties.php index 1169ad57..268b16f0 100644 --- a/tblproperties.php +++ b/tblproperties.php @@ -3,7 +3,7 @@ /** * List tables in a database * - * $Id: tblproperties.php,v 1.48 2004/05/31 13:25:49 chriskl Exp $ + * $Id: tblproperties.php,v 1.49 2004/06/10 07:16:38 chriskl Exp $ */ // Include application functions @@ -518,9 +518,9 @@ $attrs->f['attnotnull'] = $data->phpBool($attrs->f['attnotnull']); $id = (($i % 2) == 0 ? '1' : '2'); echo "\n\t", $misc->printVal($attrs->f['attname']), "\n"; - echo "\t", $misc->printVal($data->formatType($attrs->f['type'], $attrs->f['atttypmod'])), "\n"; - echo "\t", ($attrs->f['attnotnull'] ? 'NOT NULL' : ''), "\n"; - echo "\t", $misc->printVal($attrs->f['adsrc']), "\n"; + echo "\t", $misc->printVal($data->formatType($attrs->f['type'], $attrs->f['atttypmod'])), "\n"; + echo "\t", ($attrs->f['attnotnull'] ? 'NOT NULL' : ''), "\n"; + echo "\t", $misc->printVal($attrs->f['adsrc']), "\n"; echo "\thref}&table=", urlencode($_REQUEST['table']), "&column=", urlencode($attrs->f['attname']), "&action=properties\">{$lang['stralter']}\n"; if ($data->hasDropColumn()) { -- 2.39.5