You are here

function geshifilter_update_6001 in GeSHi Filter for syntax highlighting 6

Implementation of hook_update_N().

Upgrade path from usage of geshifilter_brackets variable to geshifilter_tag_styles variable.

File

./geshifilter.install, line 48
Installation and uninstallation functions for the GeSHi filter.

Code

function geshifilter_update_6001() {
  _geshifilter_update_6001_brackets_to_tag_styles(NULL);
  foreach (filter_formats() as $format => $input_format) {
    _geshifilter_update_6001_brackets_to_tag_styles($format);
  }
  return array();
}