diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-14 16:18:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-14 16:18:40 +0000 |
commit | ab03855a8ac56dba1e71ec7e0bcb2c2495f1f03b (patch) | |
tree | c7b363fc62ff2d52b63c7b921257e07d432a815c /modules | |
parent | 5646f894ac8e06b9199465e4e905b5e55f7f2ed9 (diff) | |
download | brdo-ab03855a8ac56dba1e71ec7e0bcb2c2495f1f03b.tar.gz brdo-ab03855a8ac56dba1e71ec7e0bcb2c2495f1f03b.tar.bz2 |
- Fixed braino in title.module; should fix bug #1966 reported by Moshe.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/title.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/title.module b/modules/title.module index 2086c2269..c322dda27 100644 --- a/modules/title.module +++ b/modules/title.module @@ -21,6 +21,7 @@ function title_page() { } else if (db_num_rows($result) == 1) { $node = db_fetch_object($result); + $node = node_load(array("nid" => $node->nid)); theme("header"); print node_show($node, NULL); theme("footer"); |