-
- $txt = $this->_marco->wordWrap(
- @$this->_tabla->getCellContents($i,$j), $ancho_columna,
- $estilo);
+ if (@$this->_tabla->getCellContents($i,$j)) {
+ $txt = $this->_marco->wordWrap(
+ @$this->_tabla->getCellContents($i,$j), $ancho_columna,
+ $estilo
+ );
+ }
+ else {
+ $txt = array (' ');
+ }