diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 11:08:55 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 11:08:55 -0200 |
commit | d982605f5ebf573c891e79253c90adfe712847bf (patch) | |
tree | 7f444c22e3ff37a2a85a4f340d864ae7418dc62b /drupal7_theme_methods.php | |
parent | 42c218e6f393324a875f7ce677d69cc066486845 (diff) | |
download | nuvemdario-d982605f5ebf573c891e79253c90adfe712847bf.tar.gz nuvemdario-d982605f5ebf573c891e79253c90adfe712847bf.tar.bz2 |
Custom common methods (4)
Diffstat (limited to 'drupal7_theme_methods.php')
-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 eb0da4c..9b2426a 100644 --- a/drupal7_theme_methods.php +++ b/drupal7_theme_methods.php @@ -210,7 +210,7 @@ function nuvemdario_links_woker_D7($content) { } } -$terms = get_terms_D7($content); +$terms = nuvemdario_get_terms_D7($content); if (!empty($terms)) { ob_start();?> <img class="b2-metadata-icon" src="<?php echo nuvemdario_get_full_path_to_theme(); ?>/images/posttagicon.png" width="16" height="16" alt="" /> <?php @@ -222,7 +222,7 @@ $terms = get_terms_D7($content); return $result; } -function get_terms_D7($content) { +function nuvemdario_get_terms_D7($content) { $result = NULL; foreach (array_keys($content) as $name) { $$name = & $content[$name]; |