The line below the node title displays something like:
Posted by Mon, 12/01/2003 - 18:48 on TDobes
while I expect it to display:
Posted by TDobes on Mon, 12/01/2003 - 18:48
A simple patch fixing this issue is below.
Index: marvin_2k.theme
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/marvin_2k/marvin_2k.theme,v
retrieving revision 1.6
diff -u -r1.6 marvin_2k.theme
--- marvin_2k.theme 30 Nov 2003 01:27:35 -0000 1.6
+++ marvin_2k.theme 9 Dec 2003 09:24:01 -0000
@@ -117,8 +117,8 @@
"title" => $node->title,
"node_url" => url("node/view/$node->nid"),
"terms" => $terms,
- "date" => format_name($node),
- "name" => format_date($node->created),
+ "date" => format_date($node->created),
+ "name" => format_name($node),
"static" => $node->static,
"content" => ($main && $node->teaser) ? $node->teaser : $node->body,
"links" => ($links != "") ? theme("links", $links) : "",
Comments
Comment #1
moshe weitzman commented