Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Re enabling disable full html in Drupal 7

Clicking too quickly I mistakenly disabled the text format "Full HTML" in drupal 7. I read in the core module filters that there is no way to re enable this from the core. Is there any way I can get this text format back or something that mirrors its permissions? Thank you for helping a newbie.

like image 265
artrook Avatar asked Jan 18 '23 02:01

artrook


1 Answers

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

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

UPDATE  drupal.filter_format SET  status =  '1' WHERE  filter_format.format =  'full_html';
like image 181
Naidim Avatar answered Jan 26 '23 03:01

Naidim