From f43f503c7e553b54632bfdb6dd6110c45330cd9d Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 13 Aug 2004 15:00:45 +0000 Subject: [PATCH] Add lost return to get_permalink(). git-svn-id: https://develop.svn.wordpress.org/trunk@1532 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions-links.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/template-functions-links.php b/wp-includes/template-functions-links.php index 9d34ce4204..6e6c49f6b0 100644 --- a/wp-includes/template-functions-links.php +++ b/wp-includes/template-functions-links.php @@ -79,6 +79,7 @@ function get_permalink($id=false) { if ($idpost->post_status == 'static') { $permalink .= $querystring_separator . "static=1"; } + return $permalink; } }