Skip to content
Snippets Groups Projects
Commit e8ae5c8b authored by Angie Byron's avatar Angie Byron
Browse files

#568224 by Josh Waihi and chx: Fixed missing constant in filter value. (all...

#568224 by Josh Waihi and chx: Fixed missing constant in filter value. (all pgsql tests pass now. woohoo! :D)
parent 6586b764
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -99,7 +99,7 @@ function theme_filter_admin_overview($form) { ...@@ -99,7 +99,7 @@ function theme_filter_admin_overview($form) {
function filter_admin_format_page($format = NULL) { function filter_admin_format_page($format = NULL) {
if (!isset($format->name)) { if (!isset($format->name)) {
drupal_set_title(t('Add text format'), PASS_THROUGH); drupal_set_title(t('Add text format'), PASS_THROUGH);
$format = (object)array('name' => '', 'roles' => '', 'format' => ''); $format = (object)array('name' => '', 'roles' => '', 'format' => FILTER_FORMAT_DEFAULT);
} }
return drupal_get_form('filter_admin_format_form', $format); return drupal_get_form('filter_admin_format_form', $format);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment