Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
dawinterfeldt committed Oct 8, 2012
1 parent 52885a9 commit 0c3edc5
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions framework/Koch/Datagrid/ColumnRenderer/Link.php
Expand Up @@ -63,11 +63,17 @@ public function renderCell($oCell)
}

// render
return $this->_replacePlaceholders( $values,
Clansuite_HTML::renderElement( 'a',
$this->nameFormat,
array( 'href' => Clansuite_Datagrid::appendUrl($this->linkFormat),
'id' => $this->linkId,
'title' => $this->linkTitle )));
return $this->replacePlaceholders(
$values,
Clansuite_HTML::renderElement(
'a',
$this->nameFormat,
array(
'href' => Clansuite_Datagrid::appendUrl($this->linkFormat),
'id' => $this->linkId,
'title' => $this->linkTitle
)
)
);
}
}

0 comments on commit 0c3edc5

Please sign in to comment.