diff --git a/src/wp-content/themes/twentyten/functions.php b/src/wp-content/themes/twentyten/functions.php index a36a293eb0..2996bd2450 100644 --- a/src/wp-content/themes/twentyten/functions.php +++ b/src/wp-content/themes/twentyten/functions.php @@ -326,7 +326,7 @@ if ( ! function_exists( 'twentyten_continue_reading_link' ) ) : * @return string "Continue Reading" link. */ function twentyten_continue_reading_link() { - return ' ' . __( 'Continue reading ', 'twentyten' ) . ''; + return ' ' . __( 'Continue reading ', 'twentyten' ) . ''; } endif; @@ -607,7 +607,7 @@ if ( ! function_exists( 'twentyten_posted_on' ) ) : 'meta-prep meta-prep-author', sprintf( '%3$s', - get_permalink(), + esc_url( get_permalink() ), esc_attr( get_the_time() ), get_the_date() ), @@ -648,7 +648,7 @@ if ( ! function_exists( 'twentyten_posted_in' ) ) : $posted_in, get_the_category_list( ', ' ), $tags_list, - get_permalink(), + esc_url( get_permalink() ), the_title_attribute( 'echo=0' ) ); }