Skip to content

Commit

Permalink
Fix error when trying to view an application
Browse files Browse the repository at this point in the history
  • Loading branch information
blackcoder87 committed Oct 28, 2018
1 parent 8d71b1b commit a00a3e2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/modules/teams/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Config extends \Ilch\Config\Install
{
public $config = [
'key' => 'teams',
'version' => '1.10.0',
'version' => '1.11.0',
'icon_small' => 'fa-users',
'author' => 'Veldscholten, Kevin',
'link' => 'http://ilch.de',
Expand Down
1 change: 1 addition & 0 deletions application/modules/teams/mappers/Joins.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ public function updateDecision($id, $decision) {
* Inserts Join Model.
*
* @param JoinsModel $join
* @return int
*/
public function save(JoinsModel $join)
{
Expand Down
4 changes: 2 additions & 2 deletions application/modules/teams/mappers/Teams.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ public function getTeamByGroupId($id)
/**
* Updates the position of the team.
*
* @param int $id, int $position
*
* @param int $id , int $position
* @param int $position
*/
public function updatePositionById($id, $position) {
$this->db()->update('teams')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<?=$this->getTrans('text') ?>:
</label>
<div class="col-lg-12">
<?=nl2br($this->getHtmlFromBBCode($this->escape($join->getText())) ?>
<?=nl2br($this->getHtmlFromBBCode($this->escape($join->getText()))) ?>
</div>
</div>

Expand Down

0 comments on commit a00a3e2

Please sign in to comment.