Blame view
sources/settings/ajax/enableapp.php
296 Bytes
|
03e52840d
|
1 2 3 4 |
<?php OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); |
|
31b7f2792
|
5 6 7 8 9 10 |
try {
OC_App::enable(OC_App::cleanAppId($_POST['appid']));
OC_JSON::success();
} catch (Exception $e) {
OC_Log::write('core', $e->getMessage(), OC_Log::ERROR);
OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));
|
|
03e52840d
|
11 |
} |