Merge pull request #22 from hcvcastro/master
Clear cache when saves admin settings
This commit is contained in:
commit
21a5d3f2d9
@ -110,13 +110,13 @@ class DocumentController extends Controller{
|
||||
try {
|
||||
$wopiClient = \OC::$server->getHTTPClientService()->newClient();
|
||||
$xmlBody = $wopiClient->get($wopiDiscovery)->getBody();
|
||||
if (!$xmlBody) {
|
||||
return $this->responseError('failure body content', $wopiRemote);
|
||||
}
|
||||
}
|
||||
catch (\Exception $e) {
|
||||
return $this->responseError($e->getMessage(), $wopiRemote);
|
||||
}
|
||||
|
||||
if (!$xmlBody) {
|
||||
return $this->responseError('failure body content', $wopiRemote);
|
||||
}
|
||||
|
||||
$loadEntities = libxml_disable_entity_loader(true);
|
||||
@ -128,6 +128,7 @@ class DocumentController extends Controller{
|
||||
else {
|
||||
return $this->responseError('failure discovery.xml not well-formed XML string', $wopiRemote);
|
||||
}
|
||||
}
|
||||
|
||||
\OC::$server->getNavigationManager()->setActiveEntry( 'richdocuments_index' );
|
||||
$maxUploadFilesize = \OCP\Util::maxUploadFilesize("/");
|
||||
|
@ -115,6 +115,9 @@ class SettingsController extends Controller{
|
||||
$this->appConfig->setAppValue('wopi_url', $wopi_url);
|
||||
}
|
||||
|
||||
$richMemCache = \OC::$server->getMemCacheFactory()->create('richdocuments');
|
||||
$richMemCache->clear('discovery.xml');
|
||||
|
||||
$response = array(
|
||||
'status' => 'success',
|
||||
'data' => array('message' => (string) $this->l10n->t('Saved'))
|
||||
|
Loading…
x
Reference in New Issue
Block a user