From 2cef87570c0b38ea75a6dc25e5d37751e74a0859 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 23 Jun 2004 15:47:36 +0000 Subject: [PATCH] setting table-cells without align to left, to fix wired inheritance in IE --- etemplate/inc/class.uietemplate.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/inc/class.uietemplate.inc.php b/etemplate/inc/class.uietemplate.inc.php index bfc6573a86..aa44db79ed 100644 --- a/etemplate/inc/class.uietemplate.inc.php +++ b/etemplate/inc/class.uietemplate.inc.php @@ -447,7 +447,7 @@ $opts[$col] = "0,$disable"; } } - $row_data[".$col"] .= $this->html->formatOptions($cell['align'],'ALIGN'); + $row_data[".$col"] .= $this->html->formatOptions($cell['align']?$cell['align']:'left','ALIGN'); $cl = $this->expand_name(isset($this->class_conf[$cl]) ? $this->class_conf[$cl] : $cl, $c,$r,$show_c,$show_row,$content); $row_data[".$col"] .= $this->html->formatOptions($cl,'CLASS');