Skip to content

Commit

Permalink
BUGFIX add div around post info to allow styling
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.silverstripe.com/open/modules/technoratiservice/trunk@71004 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
jkirkus committed Jan 30, 2009
1 parent dca9385 commit a607202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/MetaBlog.php
Expand Up @@ -37,7 +37,7 @@ function BlogPosts(){
foreach($posts as $post){
$postsHTML .= "<div class='metablogPost'>";
$postsHTML .= "<h2><a href='".$post->permalink."'>".$post->title."</a></h2>";
$postsHTML .= "<div class="metablogPostInfo"><span>".$post->created. " - </span><a href='".$post->weblog_url."'>".$post->weblog_name."</a></div>";
$postsHTML .= "<span>".$post->created. " - </span><a href='".$post->weblog_url."'>".$post->weblog_name."</a>";
$postsHTML .= "<p>".$post->excerpt."...</p>";
$postsHTML .= "</div>";
}
Expand Down

0 comments on commit a607202

Please sign in to comment.