2015-08-03 11:35:01 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class BlogController extends BaseController {
|
|
|
|
function load() {
|
|
|
|
$this->session_only = false;
|
2016-02-19 14:14:25 +01:00
|
|
|
$this->public = true;
|
2015-08-03 11:35:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function dispatch() {
|
|
|
|
$this->page->setTitle(__('page.blog'));
|
|
|
|
}
|
|
|
|
}
|