From d982605f5ebf573c891e79253c90adfe712847bf Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 29 Oct 2015 11:08:55 -0200 Subject: Custom common methods (4) --- common_methods.php | 2 +- drupal7_theme_methods.php | 4 ++-- node-og-group-post.tpl.php | 2 +- node.tpl.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common_methods.php b/common_methods.php index 2a15e4c..4e86835 100644 --- a/common_methods.php +++ b/common_methods.php @@ -170,7 +170,7 @@ function nuvemdario_node_worker($node) { */ function nuvemdario_terms_worker($terms) { $result = ''; -$terms = get_terms_D7($content); +$terms = nuvemdario_get_terms_D7($content); if (!empty($terms)) { ob_start();?> diff --git a/node.tpl.php b/node.tpl.php index 65b51b5..692f55f 100644 --- a/node.tpl.php +++ b/node.tpl.php @@ -17,7 +17,7 @@ // We hide the comments and links now so that we can render them later. hide($content['comments']); hide($content['links']); - $terms = get_terms_D7($content); + $terms = nuvemdario_get_terms_D7($content); hide($content[$terms['#field_name']]); print render($content); ?> -- cgit v1.2.3