Fix setting to allow download documents by mobile API - refs BT#7402 chamilo/mobile#8

pull/2487/head
Angel Fernando Quiroz Campos 9 years ago
parent 3a04f0d381
commit 56cf3e0f25
  1. 2
      main/install/data.sql

@ -1957,6 +1957,6 @@ VALUES
(1, 'localhost', SHA1(UUID()), SHA1(UUID()));
INSERT INTO settings_current (variable, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable)
VALUES ('allow_download_documents_by_api_key', NULL, 'radio', 'WebServices', 'false', 'AllowDownloadDocumentsByApiKeyTitle', 'AllowDownloadDocumentsByApiKeyComment', '', NULL, 1);
VALUES ('allow_download_documents_by_api_key', 'radio', 'WebServices', 'false', 'AllowDownloadDocumentsByApiKeyTitle', 'AllowDownloadDocumentsByApiKeyComment', '', NULL, 1);
INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_download_documents_by_api_key', 'true', 'Yes');
INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_download_documents_by_api_key', 'false', 'No');

Loading…
Cancel
Save