diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 11:10:11 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 11:10:11 -0200 |
commit | 17e3efa0e82f1c50bd35e8d86d503fe09305692f (patch) | |
tree | f36ad92017f5a4b283f05eeec9911fb60f047146 | |
parent | d982605f5ebf573c891e79253c90adfe712847bf (diff) | |
download | nuvemdario-master.tar.gz nuvemdario-master.tar.bz2 |
-rw-r--r-- | drupal7_theme_methods.php | 4 |
1 files 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; |