added compute to index

This commit is contained in:
stupidon 2016-02-28 10:18:34 +01:00
parent 82cae7df99
commit e53410a587

View file

@ -34,5 +34,12 @@
$imageObject->action($action);
$App->show();
break;
case "compute":
include_once("core/Compute.php");
$computeObject = new compute($App);
$computeObject->action($action);
$App->show();
break;
}