Fixed problem with story permalink. passed in filename was relative not absolute.

git-svn-id: https://develop.svn.wordpress.org/trunk@188 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mike Little 2003-06-07 21:58:38 +00:00
parent ed0e810ee6
commit fa8e1720fd
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ if ($i == "ASC")
?>
]
<br />
<font color="#999999"><b><a href="<?php permalink_single($blogfilename); ?>" title="permalink"><?php the_title() ?></a></b> by <b><?php the_author() ?> (<a href="javascript:profile(<?php the_author_ID() ?>)"><?php the_author_nickname() ?></a>)</b>, in <b><?php the_category() ?></b></font><br />
<font color="#999999"><b><a href="<?php permalink_single($siteurl.'/'.$blogfilename); ?>" title="permalink"><?php the_title() ?></a></b> by <b><?php the_author() ?> (<a href="javascript:profile(<?php the_author_ID() ?>)"><?php the_author_nickname() ?></a>)</b>, in <b><?php the_category() ?></b></font><br />
<?php permalink_anchor(); ?>
<?php
the_content();