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

git-svn-id: http://svn.automattic.com/wordpress/trunk@1967 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
rboren 2004-12-16 23:18:15 +00:00
parent 96e7d7f160
commit 8a663f2f25
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');
?>