$vars[nodelinks] .= '<a href="'. $matches[1] .'" class="' . $class . '">' . $matches[2] . '</a>'; } break; } } return $variables;
I suspect that you forgot to return the $vars object that the node links were placed into. Try "return $vars".
More information about formatting options
Entermedia: Web Design, and Drupal Development in Austin, TX
Return $vars
$vars[nodelinks] .= '<a href="'. $matches[1] .'" class="' . $class . '">' . $matches[2] . '</a>'; } break; } } return $variables;
I suspect that you forgot to return the $vars object that the node links were placed into. Try "return $vars".