diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-04-14 20:46:41 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-04-14 20:46:41 +0000 |
commit | d8cd54969c856531e002136f52bc52e7cbcbf49f (patch) | |
tree | 8af1ccc6b65d736855ffa81ce2fe3957725d44c6 /modules/page/page.module | |
parent | e5fd6713078d2db7145aac80b4743048a2432fc8 (diff) | |
download | brdo-d8cd54969c856531e002136f52bc52e7cbcbf49f.tar.gz brdo-d8cd54969c856531e002136f52bc52e7cbcbf49f.tar.bz2 |
- Added Marco's long-awaited taxonmy module and patches - a replacement
for the meta system. The patches add some extra functionality to the
comment system (for example, comments can be set read-only) and fix a
couple of small problems.
+ I integrated the required SQL updates from the varius *.mysql files
into the "update.php" script. Upgrading should be easy ...
+ I did not apply/commit the "user.diff" as requested by Marco ...
+ I didn't know what to do with "forum.module" and "forum2.module":
what do you want me to do with it Marco? Which one should go in?
+ Can we remove "node_index()" now; both from "node.module" and the
themes?
+ Thanks Marco!
Diffstat (limited to 'modules/page/page.module')
-rw-r--r-- | modules/page/page.module | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/page/page.module b/modules/page/page.module index e39a432ef..da048b10e 100644 --- a/modules/page/page.module +++ b/modules/page/page.module @@ -106,22 +106,22 @@ function page_view($node, $main = 0) { global $theme; if ($main) { - $theme->node($node, $main); + $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); } } |