Skip to content

Commit

Permalink
Fixes #6429 removes redundant filters
Browse files Browse the repository at this point in the history
Removes the redundant and problematic filter_url and filter_autop from default formats that have the Text Editor enabled. (Only the Basic format.)

backdrop/backdrop-issues#6429
  • Loading branch information
leeksoup committed Mar 20, 2024
1 parent 266a501 commit a1dc98f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/profiles/standard/standard.install
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function standard_install() {
'filters' => array(
'filter_url' => array(
'weight' => 0,
'status' => 1,
'status' => 0,
),
'filter_html' => array(
'weight' => 1,
Expand All @@ -41,7 +41,7 @@ function standard_install() {
// Line break filter.
'filter_autop' => array(
'weight' => 2,
'status' => 1,
'status' => 0,
),
'filter_image_caption' => array(
'weight' => 4,
Expand Down

0 comments on commit a1dc98f

Please sign in to comment.