From 2ebfe35d2d6aee3d5bba330ddff85e4bd76b35cf Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 23 Nov 2005 18:01:32 +0000 Subject: [PATCH] s/user_description/description/. Props tinyau. fixes #1943 git-svn-id: https://develop.svn.wordpress.org/trunk@3205 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 8591ac8f8e..4f443b38f2 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();