From 17e3efa0e82f1c50bd35e8d86d503fe09305692f Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 29 Oct 2015 11:10:11 -0200 Subject: Custom common methods (5) --- drupal7_theme_methods.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drupal7_theme_methods.php b/drupal7_theme_methods.php index 9b2426a..7c4887e 100644 --- a/drupal7_theme_methods.php +++ b/drupal7_theme_methods.php @@ -202,7 +202,7 @@ function nuvemdario_links_woker_D7($content) { if (isset($content['links'][$name]['#links'])) { $links = $content['links'][$name]['#links']; if (is_array($links)) { - $output = get_links_html_output_D7($links); + $output = nuvemdario_get_links_html_output_D7($links); if (!empty($output)) { $result .= (empty($result)) ? $output : ' | ' . $output; } @@ -233,7 +233,7 @@ function nuvemdario_get_terms_D7($content) { return $result; } -function get_links_html_output_D7($links) { +function nuvemdario_get_links_html_output_D7($links) { $output = ''; $num_links = count($links); $index = 0; -- cgit v1.2.3