You are here

function views_natural_sort_node_update in Views Natural Sort 7

Implementation of hook_node_update().

This keeps our natural sort index up to date.

File

./views_natural_sort.module, line 83
Provides a views filter that sorts titles by a more natural manner by ignoring articles like "The" and "A."

Code

function views_natural_sort_node_update($node) {
  _views_natural_sort_store_node($node);
}