| 1 |
<?php |
<?php |
| 2 |
// $Id: jcalendar.module,v 1.1.4.14 2008/11/18 14:05:07 karens Exp $ |
// $Id: jcalendar.module,v 1.1.4.15 2009/01/10 20:14:16 karens Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 87 |
*/ |
*/ |
| 88 |
function theme_jcalendar_view($node) { |
function theme_jcalendar_view($node) { |
| 89 |
$output = node_view($node, TRUE); |
$output = node_view($node, TRUE); |
| 90 |
$output .= '<div id="nodelink">'. l(t('more'), calendar_get_node_link($node)) .'</div>'; |
$output .= '<div id="nodelink">'. l(t('more', array(), $node->language), calendar_get_node_link($node)) .'</div>'; |
| 91 |
return $output; |
return $output; |
| 92 |
} |
} |