diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-05 18:11:42 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-05 18:11:42 +0000 |
commit | 7dfd5f0b7e04013ccc6c27c5df0eddce0e1b86de (patch) | |
tree | 91c334125a9b5e6f9438d13fb8017055929d6016 /modules/page.module | |
parent | 6d959ebe3f340e4c7f11a22c67605853411d3790 (diff) | |
download | brdo-7dfd5f0b7e04013ccc6c27c5df0eddce0e1b86de.tar.gz brdo-7dfd5f0b7e04013ccc6c27c5df0eddce0e1b86de.tar.bz2 |
- my editor got set up to insert tabs instead of spaces. Cleaning up.
Diffstat (limited to 'modules/page.module')
-rw-r--r-- | modules/page.module | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/modules/page.module b/modules/page.module index efe2820e7..e39a432ef 100644 --- a/modules/page.module +++ b/modules/page.module @@ -109,21 +109,21 @@ function page_view($node, $main = 0) { $theme->node($node, $main); } else { - /* - ** Extract the page body. If body is dynamic (using PHP code), the body - ** will be generated. - */ - - $output .= page_body($node); - - /* - ** Add the node specific links: - */ - - $output .= "<div align=\"right\">". $theme->links(link_node($node, $main)) ."</div>"; - - $theme->box($node->title, $output); - } + /* + ** Extract the page body. If body is dynamic (using PHP code), the body + ** will be generated. + */ + + $output .= page_body($node); + + /* + ** Add the node specific links: + */ + + $output .= "<div align=\"right\">". $theme->links(link_node($node, $main)) ."</div>"; + + $theme->box($node->title, $output); + } } function page_form(&$node, &$help, &$error) { |