Rev 27 | Rev 30 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 27 | Rev 29 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | <?php
|
1 | <?php
|
2 | 2 | ||
3 | require_once 'lib/Application.php'; |
3 | require_once __DIR__ . '/Application.php'; |
4 | require_once 'lib/View.php'; |
4 | require_once __DIR__ . '/View.php'; |
5 | 5 | ||
6 | /* lcfirst() is unavailable before PHP 5.3 */
|
6 | /* lcfirst() is unavailable before PHP 5.3 */
|
7 | if (false === function_exists('lcfirst')) |
7 | if (false === function_exists('lcfirst')) |
8 | {
|
8 | {
|
9 | /**
|
9 | /**
|