Correct Error in App, Add Compute in App, add Network in Index

This commit is contained in:
EoleDev 2016-02-28 19:10:51 +01:00
parent c1990e951b
commit 3fe5596998
2 changed files with 15 additions and 3 deletions

View file

@ -27,7 +27,14 @@
$identityObject->action($action);
$App->show();
break;
case "network":
include_once("core/Network.php");
$networkObject = new network($App);
$networkObject->action($action);
$App->show();
break;
case "image":
include_once("core/Image.php");
$imageObject = new image($App);