]> gitweb.fluxo.info Git - drupal/nuvemdario.git/commitdiff
Custom common methods (5) master
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 29 Oct 2015 13:10:11 +0000 (11:10 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 29 Oct 2015 13:10:11 +0000 (11:10 -0200)
drupal7_theme_methods.php

index 9b2426ae8cc0279e33247c0fa8fd58ff10676b40..7c4887e8c3586c1b29c425054c4173193c3de902 100644 (file)
@@ -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;