Fix include of comment-functions.php. Bug 554.

git-svn-id: https://develop.svn.wordpress.org/trunk@1967 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2004-12-16 23:18:15 +00:00
parent 8515151df6
commit 59c3fe5b65
2 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ function comment_author_email_link($linktext='', $before='', $after='') {
}
}
function get_comment_author_url_link( $linktext = '', $before = '', $after = '' ) }
function get_comment_author_url_link( $linktext = '', $before = '', $after = '' ) {
global $comment;
$url = get_comment_author_url();
$display = ($linktext != '') ? $linktext : $url;

View File

@ -17,6 +17,6 @@ require($curpath . 'template-functions-post.php');
require($curpath . 'template-functions-category.php');
/***** Comment tags *****/
require($curpath . 'template-functions-comment.php');
require($curpath . 'comment-functions.php');
?>