Skip to content

Commit

Permalink
Fix failing tests in Zend\Text\Table
Browse files Browse the repository at this point in the history
- Due to unvalidated merge -- protected members had their leading
  underscore removed, but a later merge re-added some of them. Fixed.
  • Loading branch information
weierophinney committed Jul 25, 2012
1 parent 6e35fd6 commit 4f7b6a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Text/Table/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public function render()
$totalNumColumns = count($this->columnWidths);

// Check if we have a horizontal character defined
$hasHorizontal = $this->_decorator->getHorizontal() !== '';
$hasHorizontal = $this->decorator->getHorizontal() !== '';

// Now render all rows, starting from the first one
$numRows = count($this->rows);
Expand Down

0 comments on commit 4f7b6a8

Please sign in to comment.