In my block module, I have the content string set:
$block['content'] = t("Information goes here");

I have updated the content in the t(), but it will not update on my server. I have run the update.php several times, cleared the cache, and re-uploaded the whole database. Used an alternate FTP to pull down the module file and check it, but it will not change. What stupid thing am I missing?

Comments

Vj’s picture

function counter_block($op = 'list', $delta = 0) {
  $block = array();
  switch ($op) {
    case 'list':
      $block[0]['info'] = t('sidebar counter');

      return $block;
    case 'view':
      switch ($delta) {
        case 0:
          $content= 15;
          $block['subject'] = t('Node Counter');                                                                                                           
          $block['content'] .= $content;
          $block['content'] .=  t('PEOPLE HAVE DECLARED') ;
          $block['content'] .= t('HAVE YOU?');
          break;
      }
      return $block;
  }
} // end function counter_block