server/admin/ajax/disableapp.php
2011-08-08 16:33:01 +02:00

8 lines
149 B
PHP

<?php
// Init owncloud
require_once('../../lib/base.php');
header( "Content-Type: application/jsonrequest" );
OC_App::disable($_POST['appid']);
?>