Blame view

sources/settings/ajax/updateapp.php 381 Bytes
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?php
  
  OC_JSON::checkAdminUser();
  OCP\JSON::callCheck();
  
  $appid = $_POST['appid'];
  $appid = OC_App::cleanAppId($appid);
  
  $result = OC_Installer::updateApp($appid);
  if($result !== false) {
  	OC_JSON::success(array('data' => array('appid' => $appid)));
  } else {
  	$l = OC_L10N::get('settings');	
  	OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't update app.") )));
  }