Plugin Directory

Changeset 727739


Ignore:
Timestamp:
06/18/2013 04:58:34 AM (13 years ago)
Author:
bholtsclaw
Message:

trim tabname whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gplus-comments/trunk/includes/lib/hooks.php

    r727738 r727739  
    121121  ), $atts ) );
    122122
    123   return GPLUS_COMMENTS_TEMPLATES . '/container.php';
     123  ob_start();
     124  include(GPLUS_COMMENTS_TEMPLATES . '/container.php');
     125  $container_content = ob_get_contents();
     126  ob_end_clean ();
     127  return $container_content;
    124128}
    125129add_shortcode( 'commentsplus', 'gplus_comments_shortcode' );
Note: See TracChangeset for help on using the changeset viewer.