Fix doc about save_titles_as_html - refs BT#14391

pull/2547/head
Angel Fernando Quiroz Campos 7 years ago committed by GitHub
parent 3f4bf3bd63
commit 6942706600
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      main/install/configuration.dist.php

@ -374,7 +374,16 @@ $_configuration['agenda_colors'] = [
*/
// ------
//
// Save some tool titles with HTML editor
// Save some tool titles with HTML editor. Require DB changes:
/*
ALTER TABLE course_category CHANGE name name LONGTEXT NOT NULL;
ALTER TABLE c_course_description CHANGE title title LONGTEXT NOT NULL;
ALTER TABLE c_thematic CHANGE title title LONGTEXT NOT NULL;
ALTER TABLE c_quiz CHANGE title title LONGTEXT NOT NULL;
ALTER TABLE c_lp_category CHANGE name name LONGTEXT NOT NULL;
ALTER TABLE c_glossary CHANGE name name LONGTEXT NOT NULL;
ALTER TABLE c_tool CHANGE name name LONGTEXT NOT NULL;
*/
// $_configuration['save_titles_as_html'] = false;
// Show the full toolbar set to all CKEditor
//$_configuration['full_ckeditor_toolbar_set'] = false;

Loading…
Cancel
Save