|
@@ -367,6 +367,14 @@ INSERT INTO settings_current (variable, subkey, type, category, selected_value,
|
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('breadcrumb_navigation_display', 'true', 'Show');
|
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('breadcrumb_navigation_display', 'false', 'Hide');
|
|
|
|
|
|
+INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('use_virtual_keyboard', NULL, 'radio', 'Platform', 'false','ShowVirtualKeyboardTitle','ShowVirtualKeyboardComment', NULL, NULL, 1);
|
|
|
+INSERT INTO settings_options (variable, value, display_text) VALUES ('use_virtual_keyboard', 'true', 'Show');
|
|
|
+INSERT INTO settings_options (variable, value, display_text) VALUES ('use_virtual_keyboard', 'false', 'Hide');
|
|
|
+
|
|
|
+INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('disable_copy_paste', NULL, 'radio', 'Platform', 'false','DisableCopyPasteTitle','DisableCopyPasteComment', NULL, NULL, 1);
|
|
|
+INSERT INTO settings_options (variable, value, display_text) VALUES ('disable_copy_paste', 'true', 'Show');
|
|
|
+INSERT INTO settings_options (variable, value, display_text) VALUES ('disable_copy_paste', 'false', 'Hide');
|
|
|
+
|
|
|
INSERT INTO settings_current(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('showonline','session','checkbox','Platform','true','ShowOnlineTitle','ShowOnlineComment',NULL,'ShowOnlineSession', 0);
|
|
|
|
|
|
ALTER TABLE c_quiz_category ADD COLUMN visibility INT default 1;
|
|
@@ -374,6 +382,5 @@ ALTER TABLE c_quiz_category ADD COLUMN visibility INT default 1;
|
|
|
ALTER TABLE c_quiz_question ADD INDEX idx_c_q_qst_cpt (c_id, parent_id, type);
|
|
|
ALTER TABLE c_quiz_question_rel_category ADD INDEX idx_c_q_qst_r_cat_qc(question_id, c_id);
|
|
|
|
|
|
-
|
|
|
-- Do not move this
|
|
|
-UPDATE settings_current SET selected_value = '1.10.0.035' WHERE variable = 'chamilo_database_version';
|
|
|
+UPDATE settings_current SET selected_value = '1.10.0.036' WHERE variable = 'chamilo_database_version';
|