mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-12-27 23:17:11 +01:00
20 lines
237 B
PHP
20 lines
237 B
PHP
|
<?php
|
||
|
|
||
|
class Forum extends MO_Controller
|
||
|
{
|
||
|
function __construct()
|
||
|
{
|
||
|
parent::__construct();
|
||
|
}
|
||
|
|
||
|
function index()
|
||
|
{
|
||
|
$this->headers('forum');
|
||
|
|
||
|
$this->load->view('forum/notimpl');
|
||
|
|
||
|
$this->footer();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
//nowhitesp
|