Welcome to mirror list, hosted at ThFree Co, Russian Federation.

disableapp.php « ajax « settings - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cf66a553f8b715a4a59fd727be195a77ae79b13 (plain)
1
2
3
4
5
6
7
8
<?php
// Init owncloud
require_once('../../lib/base.php');
header( "Content-Type: application/jsonrequest" );

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

?>