Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mattab committed Feb 3, 2013
2 parents b202ff1 + 4f10999 commit 03684f9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions core/ViewDataTable/Cloud.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,14 @@ public function main()
$this->checkStandardDataTable();
$this->view = $this->buildView();
}

function getColumnToDisplay()

/**
* Returns the name of the first numeric column to be displayed
* (second column to be displayed will be returned, as first is always label)
*
* @return string
*/
public function getColumnToDisplay()
{
$columns = parent::getColumnsToDisplay();
// not label, but the first numeric column
Expand Down

0 comments on commit 03684f9

Please sign in to comment.