2009-08-27 12:48:09 +00:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
This file is part of myTinyTodo.
|
2010-02-10 11:27:44 +00:00
|
|
|
(C) Copyright 2009-2010 Max Pozdeev <maxpozdeev@gmail.com>
|
2009-08-27 12:48:09 +00:00
|
|
|
Licensed under the GNU GPL v3 license. See file COPYRIGHT for details.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-02-06 17:35:39 +00:00
|
|
|
require_once('./init.php');
|
2009-08-27 12:48:09 +00:00
|
|
|
|
2010-02-06 17:35:39 +00:00
|
|
|
$lang = Lang::instance();
|
2009-08-27 12:48:09 +00:00
|
|
|
|
2010-01-06 19:26:30 +00:00
|
|
|
if($lang->rtl()) Config::set('rtl', 1);
|
|
|
|
|
|
2009-11-30 17:59:16 +00:00
|
|
|
if(!is_int(Config::get('firstdayofweek')) || Config::get('firstdayofweek')<0 || Config::get('firstdayofweek')>6) Config::set('firstdayofweek', 1);
|
2009-08-27 14:40:29 +00:00
|
|
|
|
2010-02-06 17:35:39 +00:00
|
|
|
define('TEMPLATEPATH', MTTPATH. 'themes/'.Config::get('template').'/');
|
2010-01-15 14:42:39 +00:00
|
|
|
|
|
|
|
|
require(TEMPLATEPATH. 'index.php');
|
|
|
|
|
|
|
|
|
|
?>
|