-
- $atr = array('border' => '0',
- 'width' => $n * $tabulados,
- 'height' => '10');
- $imagen =& new HTML_Image(@$bullets[$n] ? $bullets[$n] : '', 'bullet', $atr);
+ $tabulados = 7;
+ $atr = array(
+ 'border' => '0',
+ 'width' => $n * $tabulados,
+ 'height' => '10'
+ );
+ $margen = new HTML_Image('/MECON/images/blanco.gif', str_repeat(' ', $n), $atr);
+ $margen = $margen->toHtml();
+ $imagen = '';
+ if (@$bullets[$n]) {
+ $imagen = new HTML_Image($bullets[$n], @$alts[$n], $atr);
+ $imagen = $imagen->toHtml();
+ }