From 6fc0e8185f2fc703df5fc6ae501ea2caa96bbcb9 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Sun, 25 Feb 2007 13:26:18 +0000 Subject: [PATCH] The O.C. Disorder;; Props Nazgul. fixes 3853 git-svn-id: http://svn.automattic.com/wordpress/trunk@4937 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- app.php | 2 +- wp-includes/feed.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app.php b/app.php index 286e9ff07..7c2d82758 100644 --- a/app.php +++ b/app.php @@ -558,7 +558,7 @@ EOD; elseif ( isset( $_SERVER['HTTP_TITLE'] ) ) $slug = sanitize_file_name( $_SERVER['HTTP_TITLE'] ); elseif ( empty( $slug ) ) // just make a random name - $slug = substr( md5( uniqid( microtime() ) ), 0, 7);; + $slug = substr( md5( uniqid( microtime() ) ), 0, 7); $ext = preg_replace( '|.*/([a-z]+)|', '$1', $_SERVER['CONTENT_TYPE'] ); $slug = "$slug.$ext"; $file = wp_upload_bits( $slug, NULL, $bits); diff --git a/wp-includes/feed.php b/wp-includes/feed.php index 125ae7766..501bc8177 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -95,7 +95,7 @@ function comment_text_rss() { function comments_rss_link($link_text = 'Comments RSS', $commentsrssfilename = 'nolongerused') { - $url = get_post_comments_feed_link();; + $url = get_post_comments_feed_link(); echo "$link_text"; }