Fix for Custom format_date function

  1. <?php
  2.  
  3.    $month = t(format_date($fields['created']->raw,'custom','M'));
  4.    $day = format_date($fields['created']->raw,'custom','d');
  5.    $calendar = '<div class="datewrap">';
  6.    $calendar .= '<p><span class="datemonth">'.$month.'</span><br />
  7.   <span class="dateday">'.$day.'</span></p>';
  8.    $calendar .= '</div>';
  9.    ?>
  10. <?php print $calendar; ?>

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.