diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-05 22:07:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-05 22:07:09 +0000 |
commit | 3cf82a4eeecca2632bdc0dff5500fe7ff62d6da6 (patch) | |
tree | b7140fbdc6b992400f50062eb3e65dff148fd9ab | |
parent | 56e3e7d4a9b60f2cc11626c277f4c33249846a5c (diff) | |
download | brdo-3cf82a4eeecca2632bdc0dff5500fe7ff62d6da6.tar.gz brdo-3cf82a4eeecca2632bdc0dff5500fe7ff62d6da6.tar.bz2 |
- Bugfix: removed call to dead function. Patch by Al. Bug #1852.
-rw-r--r-- | modules/title.module | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/title.module b/modules/title.module index b2aba20b0..2086c2269 100644 --- a/modules/title.module +++ b/modules/title.module @@ -21,8 +21,6 @@ function title_page() { } else if (db_num_rows($result) == 1) { $node = db_fetch_object($result); - - $node = get_node_from_nid($node->nid); theme("header"); print node_show($node, NULL); theme("footer"); |