summaryrefslogtreecommitdiffstats
path: root/admin/ajax/disableapp.php
blob: dce62fa11d46feb17b813b9a6fe3231e2a19763b (plain)
1
2
3
4
5
6
7
8
9
<?php

// Init owncloud
require_once('../../lib/base.php');
header( "Content-Type: application/jsonrequest" );

OC_App::disable($_POST['appid']);

?>