From bf00906f7a3ddff68475aa42c7b0b287174e4fd4 Mon Sep 17 00:00:00 2001 From: Mark Jaquith 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: https://develop.svn.wordpress.org/trunk@5767 602fd350-edb4-49c9-b593-d223f7449a82 --- 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;