summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-12-07 10:28:20 +0000
committerDries Buytaert <dries@buytaert.net>2003-12-07 10:28:20 +0000
commit223d1bad9b3d37f0533ca454a475c39c276108c3 (patch)
treed24c9f622faca2924b379e3be310957a681e1ec1
parent0c80c55e91b3cbef4f8e62fd5f654db5f043f691 (diff)
downloadbrdo-223d1bad9b3d37f0533ca454a475c39c276108c3.tar.gz
brdo-223d1bad9b3d37f0533ca454a475c39c276108c3.tar.bz2
- Fixed title problem with title module. Patch by Moshe.
-rw-r--r--modules/title.module2
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"));