filter_fallback_format_title

  1. drupal
    1. 7 filter.module function
Drupal 7 filter_fallback_format_title()

Returns the title of the fallback text format.

File

modules/filter/filter.module, line 554
Framework for handling filtering of content.

Code

function filter_fallback_format_title() {
  $fallback_format = filter_format_load(filter_fallback_format());
  return filter_admin_format_title($fallback_format);
}