You are here

function diff_filter_xss in Diff 7.3

A wrapper function for filter_xss() to exclude all tags.

File

./diff.module, line 667
Provides functionality to show a diff between two node revisions.

Code

function diff_filter_xss($string) {
  return filter_xss($string, array());
}