summaryrefslogtreecommitdiff
path: root/themes/chameleon
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-23 02:07:36 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-23 02:07:36 +0000
commita2a5c4c11792889ca3b213199a8e71f40eb1bc38 (patch)
tree52dff8e854fc4638d4f4db3140284d5d36d422f2 /themes/chameleon
parent5edfedf890b0ff24b1eac3554f8fed964d2a5929 (diff)
downloadbrdo-a2a5c4c11792889ca3b213199a8e71f40eb1bc38.tar.gz
brdo-a2a5c4c11792889ca3b213199a8e71f40eb1bc38.tar.bz2
#18260 by m3avrck, cleaning up broken chameleon theme.
Diffstat (limited to 'themes/chameleon')
-rw-r--r--themes/chameleon/chameleon.theme4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index 5e09a294d..32f0f19b6 100644
--- a/themes/chameleon/chameleon.theme
+++ b/themes/chameleon/chameleon.theme
@@ -131,7 +131,7 @@ function chameleon_node($node, $teaser = 0, $page = 0) {
$output .= " </div>\n";
- $submitted = theme_get_setting("toggle_node_info_$node->type") ? array(t("By %author at %date", array('%author' => theme('username', $node), '%date' => format_date($node->created, 'small')))) : array();
+ $submitted['node_submitted'] = theme_get_setting("toggle_node_info_$node->type") ? array('#title' => t("By %author at %date", array('%author' => theme('username', $node), '%date' => format_date($node->created, 'small')))) : array();
$terms = array();
if (module_exist('taxonomy')) {
@@ -152,7 +152,7 @@ function chameleon_node($node, $teaser = 0, $page = 0) {
}
function chameleon_comment($comment, $links = "") {
- $submitted = array(t('By %author at %date', array('%author' => theme('username', $comment), '%date' => format_date($comment->timestamp. 'small'))));
+ $submitted['comment_submitted'] = array('#title' => t('By %author at %date', array('%author' => theme('username', $comment), '%date' => format_date($comment->timestamp. 'small'))));
$output = "<div class=\"comment". ($comment->status == COMMENT_NOT_PUBLISHED ? ' comment-unpublished' : '') ."\">\n";
$output .= " <h3 class=\"title\">". l($comment->subject, $_GET['q'], NULL, NULL, "comment-$comment->cid") ."</h3>\n";