Re allows you to disable full html in Drupal 7

Too quickly, I mistakenly disabled the Full HTML text format in drupal 7. I read in the filters of the main module that there was no way to re-enable this from the kernel. Is there any way to return this text format or something that reflects its permissions? Thanks for helping the newbie.

+4
source share
2 answers

This is a known bug: https://www.drupal.org/node/2502637

What you can do carefully, go to your Drupal database, in the filter_format table and change status to 1

 UPDATE drupal.filter_format SET status = '1' WHERE filter_format.format = 'full_html'; 
+8
source

Full HTML format: This link contains instructions for this: http://drupal.org/node/778976

+1
source

Source: https://habr.com/ru/post/1403585/


All Articles