You are here

function freelinking_update_6000 in Freelinking 6.3

Implements hook_update_N().

Input formats using Freelinking filters should not be cached.

File

./freelinking.install, line 22
Install, update and uninstall functions for the freelinking module.

Code

function freelinking_update_6000() {
  db_query("UPDATE {filter_formats} SET cache=0 WHERE format IN (SELECT format FROM {filters} WHERE module='%s')", array(
    'freelinking',
  ));
}