Some comments.

This commit is contained in:
Lars Jung 2013-07-10 23:11:44 +02:00
parent 63115432ce
commit 5f27518852
2 changed files with 6 additions and 4 deletions

View file

@ -1,7 +1,7 @@
<?php
// bootstrap
/* Bootstrap */
function normalize_path($path, $trailing_slash = false) {
@ -20,19 +20,19 @@ function normalized_require_once($lib) {
}
// load libs
/* Load Libs */
normalized_require_once("/server/php/inc/util.php");
normalized_require_once("/server/php/inc/App.php");
normalized_require_once("/server/php/inc/Item.php");
// init
/* Init */
$app = new App(APP_ABS_PATH, APP_ABS_HREF, ABS_HREF);
// run
/* Run */
if (array_key_exists("action", $_REQUEST)) {