From 6708e3d4ff580a80446fe343d50837e1a099dc67 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 23 Nov 2005 18:01:32 +0000 Subject: [PATCH] s/user_description/description/. Props tinyau. fixes #1943 git-svn-id: http://svn.automattic.com/wordpress/trunk@3205 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-functions-author.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/template-functions-author.php b/wp-includes/template-functions-author.php index 8591ac8f8..4f443b38f 100644 --- a/wp-includes/template-functions-author.php +++ b/wp-includes/template-functions-author.php @@ -13,7 +13,7 @@ function the_author($idmode = '', $echo = true) { function get_the_author_description() { global $authordata; - return $authordata->user_description; + return $authordata->description; } function the_author_description() { echo get_the_author_description();