Remove unnecessary variable initialization. Props nbachiyski. fixes #10736

git-svn-id: https://develop.svn.wordpress.org/trunk@12194 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-11-16 22:44:59 +00:00
parent cac2e59fda
commit 8565a52fb0
1 changed files with 0 additions and 1 deletions

View File

@ -247,7 +247,6 @@ function the_excerpt() {
*/
function get_the_excerpt($deprecated = '') {
global $post;
$output = '';
$output = $post->post_excerpt;
if ( post_password_required($post) ) {
$output = __('There is no excerpt because this is a protected post.');