Index: trunk/extensions/TemplateInfo/TemplateInfo.classes.php |
— | — | @@ -49,7 +49,7 @@ |
50 | 50 | $data_type = htmlspecialchars($data_type); |
51 | 51 | $content = is_null($value) ? $data_type : "$data_type: " . HTML::element('span', array('class' => 'rowValue'), $value); |
52 | 52 | $cell = HTML::rawElement('td', array('colspan' => 2), $content); |
53 | | - $text = HTML::rawElement('tr', array('class' => "$css_class"), $cell); |
| 53 | + $text = HTML::rawElement('tr', array('class' => $css_class), $cell); |
54 | 54 | $text .= "\n"; |
55 | 55 | return $text; |
56 | 56 | } |
— | — | @@ -57,7 +57,7 @@ |
58 | 58 | static function tableMessageRowHTML($css_class, $name, $value) { |
59 | 59 | $cell1 = HTML::element('td', array(), $name); |
60 | 60 | $cell2 = HTML::element('td', array('class' => 'msg'), $value); |
61 | | - $text = HTML::rawElement('tr', array('class' => "$css_class"), $cell1 . "\n" . $cell2); |
| 61 | + $text = HTML::rawElement('tr', array('class' => $css_class), $cell1 . "\n" . $cell2); |
62 | 62 | $text .= "\n"; |
63 | 63 | return $text; |
64 | 64 | } |