summaryrefslogtreecommitdiffstats
path: root/admin/ajax/disableapp.php
blob: d23f8de7ef0f6c78b7ef862c159abc4977b47b3d (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']);

?>