--- event.theme 2007-06-05 11:04:48.000000000 -0400
+++ event_new.theme 2007-07-11 16:49:10.281250000 -0400
@@ -461,7 +461,10 @@
* The url to use for the read more link
*/
function theme_event_more_link($path) {
- return '
'. l(t('more'), $path, array('title' => t('More events.'))) .'
';
+ $links = ''. l(t('add'), 'node/add/event', array('title' => t('Add events.'))) .'
';
+ $links .= ' ';
+ $links .= ''. l(t('more'), $path, array('title' => t('More events.'))) .'
';
+ return $links;
}
/**