Skip to content

Commit

Permalink
Change current version to 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Apr 30, 2010
1 parent 9c9e6e5 commit 98b91f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions apps/front/modules/branch/actions/components.class.php
Expand Up @@ -28,15 +28,19 @@ public function executeShow()
->withI18n()
->leftJoin('p.Doc d')
->where('d.type = ?', 'tuto')
->andWhere('d.branch_id = ?', $this->branch->id)
->orderBy('p.position ASC')
->fetchOne();
$this->howTo = dmDb::query('Doc d')
->withI18n()
->where('d.type = ?', 'howto')
->andWhere('d.branch_id = ?', $this->branch->id)
->fetchOne();
$this->openSourceProjects = dmDb::query('DocPage p')
->withI18n()
->leftJoin('p.Doc d')
->where('pTranslation.name = ?', 'Open source projects')
->andWhere('d.branch_id = ?', $this->branch->id)
->fetchOne();
}

Expand Down
2 changes: 1 addition & 1 deletion config/app.yml
@@ -1,4 +1,4 @@
all:

branches:
current: "5.0"
current: "5.1"

0 comments on commit 98b91f0

Please sign in to comment.