- Fixed title problem with title module. Patch by Moshe.

4.4.x
Dries Buytaert 2003-12-07 10:28:20 +00:00
parent 0c80c55e91
commit 223d1bad9b
1 changed files with 1 additions and 1 deletions

View File

@ -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"));