The output looks ilke this:

vlado" target="_blank">vlado:

Amazing video
vlado" target="_blank">vlado:

hey!

Comments

fizk’s picture

shoutbox/shoutbox.module: _shoutbox_display_posts() calls theme('shoutbox_post') twice on the same input. Please fix.

Cloning the $shout object seems to work:


// Theme the shoutbox post.
      if ($ascending) {
          $output .= theme('shoutbox_post', clone $shout, $shoutlinks);
      }
      else {
          $output = theme('shoutbox_post', clone $shout, $shoutlinks) . $output;
      }
      $rows[] = array(theme('shoutbox_post', $shout, $shoutlinks, FALSE));
      ++$count;

or

function theme_shoutbox_post($_shout, $links = array(), $alter_row_color=TRUE) {
    $shout = clone $_shout;
...
vitalblue’s picture

Issue summary: View changes
Status: Active » Closed (fixed)