diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/field/field.module | 2 | ||||
-rw-r--r-- | modules/node/node.tpl.php | 6 | ||||
-rw-r--r-- | modules/user/user-profile.tpl.php | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/modules/field/field.module b/modules/field/field.module index 0bfd91553..9b8ddbead 100644 --- a/modules/field/field.module +++ b/modules/field/field.module @@ -471,7 +471,7 @@ function field_format($obj_type, $object, $field, $item, $formatter_name = NULL, * Return a single field, fully themed with label and multiple values. * * To be used by third-party code (Views, Panels...) that needs to output - * an isolated field. Do *not* use inside node templates, use the + * an isolated field. Do *not* use inside node templates, use * render($content[FIELD_NAME]) instead. * * The field will be displayed using the display options (label display, diff --git a/modules/node/node.tpl.php b/modules/node/node.tpl.php index 77c1f9642..362907f38 100644 --- a/modules/node/node.tpl.php +++ b/modules/node/node.tpl.php @@ -91,12 +91,12 @@ // We hide the comments and links now so that we can render them later. hide($content['comments']); hide($content['links']); - render($content); + print render($content); ?> </div> - <?php render($content['links']); ?> + <?php print render($content['links']); ?> - <?php render($content['comments']); ?> + <?php print render($content['comments']); ?> </div> diff --git a/modules/user/user-profile.tpl.php b/modules/user/user-profile.tpl.php index a6d49b4a0..8b50f7026 100644 --- a/modules/user/user-profile.tpl.php +++ b/modules/user/user-profile.tpl.php @@ -28,5 +28,5 @@ */ ?> <div class="profile"> - <?php render($user_profile); ?> + <?php print render($user_profile); ?> </div> |