Hi guys,

I am trying to change "more" at the bottom of "New forum topics" block in Drupal 6. Below is the code from forum.module . How can I do it?

if (!empty($content)) {
$block['subject'] = $title;
$block['content'] = $content . theme('more_link', url('node'), t('Read the latest forum topics.'));
return $block;
}

Steven

Comments

rkdeveloper’s picture

use this function http://api.drupal.org/api/function/theme_more_link/6

you need to write in theme template.php file

steven9’s picture

thank you so much. That did the trick.