diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-07 10:28:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-07 10:28:20 +0000 |
commit | 223d1bad9b3d37f0533ca454a475c39c276108c3 (patch) | |
tree | d24c9f622faca2924b379e3be310957a681e1ec1 | |
parent | 0c80c55e91b3cbef4f8e62fd5f654db5f043f691 (diff) | |
download | brdo-223d1bad9b3d37f0533ca454a475c39c276108c3.tar.gz brdo-223d1bad9b3d37f0533ca454a475c39c276108c3.tar.bz2 |
- Fixed title problem with title module. Patch by Moshe.
-rw-r--r-- | modules/title.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/title.module b/modules/title.module index aa99aefdd..4f9455ccc 100644 --- a/modules/title.module +++ b/modules/title.module @@ -40,7 +40,7 @@ function title_page() { else if (db_num_rows($result) == 1) { $node = db_fetch_object($result); $node = node_load(array("nid" => $node->nid)); - print theme("page", node_show($node, NULL)); + print theme("page", node_show($node, NULL), $node->title); } else { $header = array(t("Type"), t("Title"), t("Author")); |