summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-10-29 11:10:11 -0200
committerSilvio Rhatto <rhatto@riseup.net>2015-10-29 11:10:11 -0200
commit17e3efa0e82f1c50bd35e8d86d503fe09305692f (patch)
treef36ad92017f5a4b283f05eeec9911fb60f047146
parentd982605f5ebf573c891e79253c90adfe712847bf (diff)
downloadnuvemdario-master.tar.gz
nuvemdario-master.tar.bz2
Custom common methods (5)HEADmaster
-rw-r--r--drupal7_theme_methods.php4
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 : '&nbsp;|&nbsp;' . $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;