From 8043cb998f3325731bfab8d82251fa49639aec1d Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 20 Apr 2002 11:52:50 +0000 Subject: - Applied Marco's big patch, including contributions from Moshe: + Changed the db_query() API. + Wrapped all links in l(), lm(), la(), ..., drupal_url() functions. + XHTML-ified some HTML. + Wrapped a lot of text in the administrative pages in a t() function. + Replaced all $REQUEST_URI/$PATH_INFOs by request_uri(). + Small bugfixes (eg. bug in book_export_html() and clean-ups (eg. RSS code). + Fixed some bugs in the taxonomy module (eg. tree making bug), added new functionality (eg. new APIs for use by other modules), included Moshe's taxonomy extensions, and some documentation udpates. + ... --- node.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'node.php') diff --git a/node.php b/node.php index 48ceb3dcb..d77fac130 100644 --- a/node.php +++ b/node.php @@ -42,7 +42,7 @@ if ($number > 1) { while ($node = db_fetch_object($result)) { if (node_access("view", $node)) { - $output .= "

nid\">". check_output($node->title) ."
$node->type - ". format_name($node) ." - ". format_date($node->ccreated, "small") ."

"; + $output .= "

".l(check_output($node->title), array("id" => $node->nid))."
$node->type - ". format_name($node) ." - ". format_date($node->ccreated, "small") ."

"; } } -- cgit v1.2.3