dotProject sets the version number using pieces: major, minor, and patch. Interesting.
It has some sort of query builder which doesn't make sense to me.
I like how the entire program is accessed via a single file (index.php), so when I see stuff like this I wonder why it isn't done in the index.php file:
// First order check if we are allowed to view
if (!$canAccess) {
$AppUI->redirect('m=public&a=access_denied');
}
$AppUI->savePlace();
Leave a comment