From 044c12ae429c9529439a459845fe77096029d485 Mon Sep 17 00:00:00 2001 From: rboren Date: Fri, 13 Aug 2004 15:00:45 +0000 Subject: [PATCH] Add lost return to get_permalink(). git-svn-id: http://svn.automattic.com/wordpress/trunk@1532 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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; } }