* @return void
* @access public
*/
- function MECON_PDF_Tabla(&$TABLA) {
- $this->_tabla =& $TABLA;
+ function MECON_PDF_Tabla($TABLA) {
+ $this->_tabla = $TABLA;
$this->_config = include 'MECON/PDF/Tabla/medidas.php';
}
$this->_marco->orientacion);
$alto1 = $alto + $max;
- foreach ($txtt[$j] as $t) {
- $alto1 -= $estilo['alto_linea'];
+ if (@$txtt[$j]) {
+ foreach ($txtt[$j] as $t) {
+ $alto1 -= $estilo['alto_linea'];
- //Ubico el texto segun su alineacion
- $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
- $estilo);
-
- $this->_marco->addText($init, $alto1 + 2,
- $t, $estilo, null, $this->_marco->orientacion);
+ //Ubico el texto segun su alineacion
+ $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
+ $estilo);
+
+ $this->_marco->addText($init, $alto1 + 2,
+ $t, $estilo, null, $this->_marco->orientacion);
+ }
}
}
}