From 0e2d9ff004f626f3aae6e4b6cd08a0df01d8cd7f Mon Sep 17 00:00:00 2001 From: markjaquith Date: Wed, 27 Jun 2007 00:51:04 +0000 Subject: [PATCH] Fix typo in get_the_author_url(). props pgdx. fixes #4542 git-svn-id: http://svn.automattic.com/wordpress/trunk@5767 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/author-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/author-template.php b/wp-includes/author-template.php index 8ec3786634..ac15a28d92 100644 --- a/wp-includes/author-template.php +++ b/wp-includes/author-template.php @@ -165,7 +165,7 @@ function the_author_email() { function get_the_author_url() { global $authordata; - if ( 'http://' == $authordata>user_url ) + if ( 'http://' == $authordata->user_url ) return ''; return $authordata->user_url;