11 lines
192 B
PHP
11 lines
192 B
PHP
<?php defined('SYSPATH') or die('No direct script access.');
|
|
|
|
class Controller_Welcome extends Controller {
|
|
|
|
public function action_index()
|
|
{
|
|
HTTP::redirect('photo');
|
|
}
|
|
|
|
} // End Welcome
|