<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[13029] trunk/wp-content/themes/twentyten: Escape some attributes.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13029">13029</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2010-02-08 20:28:13 +0000 (Mon, 08 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Escape some attributes. Fix search form action. see <a href="http://trac.wordpress.org/ticket/9015">#9015</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpcontentthemestwentytenarchivephp">trunk/wp-content/themes/twentyten/archive.php</a></li>
<li><a href="#trunkwpcontentthemestwentytenattachmentphp">trunk/wp-content/themes/twentyten/attachment.php</a></li>
<li><a href="#trunkwpcontentthemestwentytenauthorphp">trunk/wp-content/themes/twentyten/author.php</a></li>
<li><a href="#trunkwpcontentthemestwentytencategoryphp">trunk/wp-content/themes/twentyten/category.php</a></li>
<li><a href="#trunkwpcontentthemestwentytencommentsphp">trunk/wp-content/themes/twentyten/comments.php</a></li>
<li><a href="#trunkwpcontentthemestwentytenfooterphp">trunk/wp-content/themes/twentyten/footer.php</a></li>
<li><a href="#trunkwpcontentthemestwentytenfunctionsphp">trunk/wp-content/themes/twentyten/functions.php</a></li>
<li><a href="#trunkwpcontentthemestwentytenheaderphp">trunk/wp-content/themes/twentyten/header.php</a></li>
<li><a href="#trunkwpcontentthemestwentytenindexphp">trunk/wp-content/themes/twentyten/index.php</a></li>
<li><a href="#trunkwpcontentthemestwentytensearchphp">trunk/wp-content/themes/twentyten/search.php</a></li>
<li><a href="#trunkwpcontentthemestwentytensearchformphp">trunk/wp-content/themes/twentyten/searchform.php</a></li>
<li><a href="#trunkwpcontentthemestwentytensinglephp">trunk/wp-content/themes/twentyten/single.php</a></li>
<li><a href="#trunkwpcontentthemestwentytentagphp">trunk/wp-content/themes/twentyten/tag.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpcontentthemestwentytenarchivephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/archive.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/archive.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/archive.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -27,14 +27,14 @@
</span><span class="cx"> &lt;?php while ( have_posts() ) : the_post(); ?&gt;
</span><span class="cx"> 
</span><span class="cx">                                 &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
</span><del>-                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( __('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</del><ins>+                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</ins><span class="cx"> 
</span><span class="cx">                                         &lt;div class=&quot;entry-meta&quot;&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-prep meta-prep-author&quot;&gt;&lt;?php _e('Posted on ', 'twentyten'); ?&gt;&lt;/span&gt;
</span><span class="cx">                                                 &lt;a href=&quot;&lt;?php
</span><del>-                the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_time('Y-m-d\TH:i:sO') ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/span&gt;&lt;/a&gt;
</del><ins>+                the_permalink(); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_the_time('Y-m-d\TH:i:sO') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/span&gt;&lt;/a&gt;
</ins><span class="cx">                                                 &lt;span class=&quot;meta-sep&quot;&gt; &lt;?php _e('by ', 'twentyten'); ?&gt; &lt;/span&gt;
</span><del>-                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</del><ins>+                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</ins><span class="cx">                                         &lt;/div&gt;&lt;!-- .entry-meta --&gt;
</span><span class="cx"> 
</span><span class="cx">                                         &lt;div class=&quot;entry-summary&quot;&gt;
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytenattachmentphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/attachment.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/attachment.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/attachment.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -5,14 +5,14 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;?php the_post(); ?&gt;
</span><span class="cx"> 
</span><del>-                                &lt;p class=&quot;page-title&quot;&gt;&lt;a href=&quot;&lt;?php echo get_permalink($post-&gt;post_parent) ?&gt;&quot; title=&quot;&lt;?php printf( __( 'Return to %s', 'twentyten' ), wp_specialchars( get_the_title($post-&gt;post_parent), 1 ) ) ?&gt;&quot; rel=&quot;gallery&quot;&gt;&amp;larr; &lt;?php echo get_the_title($post-&gt;post_parent) ?&gt;&lt;/a&gt;&lt;/p&gt;
</del><ins>+                                &lt;p class=&quot;page-title&quot;&gt;&lt;a href=&quot;&lt;?php echo get_permalink($post-&gt;post_parent) ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'Return to %s', 'twentyten' ), wp_specialchars( get_the_title($post-&gt;post_parent), 1 ) ) ?&gt;&quot; rel=&quot;gallery&quot;&gt;&amp;larr; &lt;?php echo get_the_title($post-&gt;post_parent) ?&gt;&lt;/a&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx">                                 &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
</span><span class="cx">                                         &lt;h2 class=&quot;entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
</span><span class="cx"> 
</span><span class="cx">                                         &lt;div class=&quot;entry-meta&quot;&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-prep meta-prep-author&quot;&gt;&lt;?php _e('By ', 'twentyten'); ?&gt;&lt;/span&gt;
</span><del>-                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</del><ins>+                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</ins><span class="cx">                                                 &lt;span class=&quot;meta-sep&quot;&gt; | &lt;/span&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-prep meta-prep-entry-date&quot;&gt;&lt;?php _e('Published ', 'twentyten'); ?&gt;&lt;/span&gt;
</span><span class="cx">                                                 &lt;span class=&quot;entry-date&quot;&gt;&lt;abbr class=&quot;published&quot; title=&quot;&lt;?php the_time('Y-m-d\TH:i:sO') ?&gt;&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/abbr&gt;&lt;/span&gt;
</span><span class="lines">@@ -22,7 +22,7 @@
</span><span class="cx">                                         &lt;div class=&quot;entry-content&quot;&gt;
</span><span class="cx">                                                 &lt;div class=&quot;entry-attachment&quot;&gt;
</span><span class="cx"> &lt;?php if ( wp_attachment_is_image( $post-&gt;id ) ) : $att_image = wp_get_attachment_image_src( $post-&gt;id, array(640,640)); ?&gt;
</span><del>-                                                &lt;p class=&quot;attachment&quot;&gt;&lt;a href=&quot;&lt;?php echo wp_get_attachment_url($post-&gt;id); ?&gt;&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;img src=&quot;&lt;?php echo $att_image[0];?&gt;&quot; width=&quot;&lt;?php echo $att_image[1];?&gt;&quot; height=&quot;&lt;?php echo $att_image[2];?&gt;&quot;  class=&quot;attachment-medium&quot; alt=&quot;&lt;?php $post-&gt;post_excerpt; ?&gt;&quot; /&gt;&lt;/a&gt;
</del><ins>+                                                &lt;p class=&quot;attachment&quot;&gt;&lt;a href=&quot;&lt;?php echo wp_get_attachment_url($post-&gt;id); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_the_title() ); ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;img src=&quot;&lt;?php echo $att_image[0];?&gt;&quot; width=&quot;&lt;?php echo $att_image[1];?&gt;&quot; height=&quot;&lt;?php echo $att_image[2];?&gt;&quot;  class=&quot;attachment-medium&quot; alt=&quot;&lt;?php $post-&gt;post_excerpt; ?&gt;&quot; /&gt;&lt;/a&gt;
</ins><span class="cx">                                                 &lt;/p&gt;
</span><span class="cx"> 
</span><span class="cx"> 
</span><span class="lines">@@ -31,7 +31,7 @@
</span><span class="cx">                                         &lt;div class=&quot;nav-next&quot;&gt;&lt;?php next_image_link( false ); ?&gt;&lt;/div&gt;
</span><span class="cx">                                 &lt;/div&gt;&lt;!-- #nav-below --&gt;
</span><span class="cx"> &lt;?php else : ?&gt;
</span><del>-                                                &lt;a href=&quot;&lt;?php echo wp_get_attachment_url($post-&gt;ID) ?&gt;&quot; title=&quot;&lt;?php echo wp_specialchars( get_the_title($post-&gt;ID), 1 ) ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;?php echo basename($post-&gt;guid) ?&gt;&lt;/a&gt;
</del><ins>+                                                &lt;a href=&quot;&lt;?php echo wp_get_attachment_url($post-&gt;ID) ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_the_title($post-&gt;ID) ); ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;?php echo basename($post-&gt;guid) ?&gt;&lt;/a&gt;
</ins><span class="cx"> &lt;?php endif; ?&gt;
</span><span class="cx">                                                 &lt;/div&gt;
</span><span class="cx">                                                 &lt;div class=&quot;entry-caption&quot;&gt;&lt;?php if ( !empty($post-&gt;post_excerpt) ) the_excerpt() ?&gt;&lt;/div&gt;
</span><span class="lines">@@ -49,13 +49,13 @@
</span><span class="cx">                                                 the_title_attribute('echo=0'),
</span><span class="cx">                                                 comments_rss() ) ?&gt;
</span><span class="cx"> 
</span><del>-&lt;?php if ( ('open' == $post-&gt;comment_status) &amp;&amp; ('open' == $post-&gt;ping_status) ) : // Comments and trackbacks open ?&gt;
</del><ins>+&lt;?php if ( comments_open() &amp;&amp; pings_open() ) : // Comments and trackbacks open ?&gt;
</ins><span class="cx">                                                 &lt;?php printf( __( '&lt;a class=&quot;comment-link&quot; href=&quot;#respond&quot; title=&quot;Post a comment&quot;&gt;Post a comment&lt;/a&gt; or leave a trackback: &lt;a class=&quot;trackback-link&quot; href=&quot;%s&quot; title=&quot;Trackback URL for your post&quot; rel=&quot;trackback&quot;&gt;Trackback URL&lt;/a&gt;.', 'twentyten' ), get_trackback_url() ) ?&gt;
</span><del>-&lt;?php elseif ( !('open' == $post-&gt;comment_status) &amp;&amp; ('open' == $post-&gt;ping_status) ) : // Only trackbacks open ?&gt;
</del><ins>+&lt;?php elseif ( !comments_open() &amp;&amp; pings_open() ) : // Only trackbacks open ?&gt;
</ins><span class="cx">                                                 &lt;?php printf( __( 'Comments are closed, but you can leave a trackback: &lt;a class=&quot;trackback-link&quot; href=&quot;%s&quot; title=&quot;Trackback URL for your post&quot; rel=&quot;trackback&quot;&gt;Trackback URL&lt;/a&gt;.', 'twentyten' ), get_trackback_url() ) ?&gt;
</span><del>-&lt;?php elseif ( ('open' == $post-&gt;comment_status) &amp;&amp; !('open' == $post-&gt;ping_status) ) : // Only comments open ?&gt;
</del><ins>+&lt;?php elseif ( comments_open() &amp;&amp; !pings_open() ) : // Only comments open ?&gt;
</ins><span class="cx">                                                 &lt;?php _e( 'Trackbacks are closed, but you can &lt;a class=&quot;comment-link&quot; href=&quot;#respond&quot; title=&quot;Post a comment&quot;&gt;post a comment&lt;/a&gt;.', 'twentyten' ) ?&gt;
</span><del>-&lt;?php elseif ( !('open' == $post-&gt;comment_status) &amp;&amp; !('open' == $post-&gt;ping_status) ) : // Comments and trackbacks closed ?&gt;
</del><ins>+&lt;?php elseif ( !comments_open() &amp;&amp; !pings_open() ) : // Comments and trackbacks closed ?&gt;
</ins><span class="cx">                                                 &lt;?php _e( 'Both comments and trackbacks are currently closed.', 'twentyten' ) ?&gt;
</span><span class="cx"> &lt;?php endif; ?&gt;
</span><span class="cx"> &lt;?php edit_post_link( __( 'Edit', 'twentyten' ), &quot;\n\t\t\t\t\t&lt;span class=\&quot;edit-link\&quot;&gt;&quot;, &quot;&lt;/span&gt;&quot; ) ?&gt;
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytenauthorphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/author.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/author.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/author.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;?php the_post(); ?&gt;
</span><span class="cx"> 
</span><del>-                                &lt;h1 class=&quot;page-title author&quot;&gt;&lt;?php printf( __( 'Author Archives: &lt;span class=&quot;vcard&quot;&gt;%s&lt;/span&gt;', 'twentyten' ), &quot;&lt;a class='url fn n' href='$authordata-&gt;user_url' title='$authordata-&gt;display_name' rel='me'&gt;$authordata-&gt;display_name&lt;/a&gt;&quot; ) ?&gt;&lt;/h1&gt;
</del><ins>+                                &lt;h1 class=&quot;page-title author&quot;&gt;&lt;?php printf( __( 'Author Archives: &lt;span class=&quot;vcard&quot;&gt;%s&lt;/span&gt;', 'twentyten' ), &quot;&lt;a class='url fn n' href='$authordata-&gt;user_url' title='&quot; . esc_attr($authordata-&gt;display_name) . &quot;' rel='me'&gt;&quot; . esc_html($authordata-&gt;display_name) . &quot;&lt;/a&gt;&quot; ) ?&gt;&lt;/h1&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;?php if ( get_the_author_meta('description') ) : // If a user has filled out their decscription show a bio on their entries  ?&gt;
</span><span class="cx">                                         &lt;div id=&quot;entry-author-info&quot;&gt;
</span><span class="lines">@@ -31,7 +31,7 @@
</span><span class="cx"> &lt;?php while ( have_posts() ) : the_post(); ?&gt;
</span><span class="cx"> 
</span><span class="cx">                                 &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
</span><del>-                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( __('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</del><ins>+                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</ins><span class="cx"> 
</span><span class="cx">                                         &lt;div class=&quot;entry-meta&quot;&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-prep meta-prep-author&quot;&gt;&lt;?php _e('Posted on ', 'twentyten'); ?&gt;&lt;/span&gt;
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytencategoryphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/category.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/category.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/category.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -21,14 +21,14 @@
</span><span class="cx"> &lt;?php while ( have_posts() ) : the_post(); ?&gt;
</span><span class="cx"> 
</span><span class="cx">                                 &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
</span><del>-                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( __('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</del><ins>+                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</ins><span class="cx"> 
</span><span class="cx">                                         &lt;div class=&quot;entry-meta&quot;&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-prep meta-prep-author&quot;&gt;&lt;?php _e('Posted on ', 'twentyten'); ?&gt;&lt;/span&gt;
</span><span class="cx">                                                 &lt;a href=&quot;&lt;?php
</span><span class="cx">                 the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_time('Y-m-d\TH:i:sO') ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/span&gt;&lt;/a&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-sep&quot;&gt; &lt;?php _e('by ', 'twentyten'); ?&gt; &lt;/span&gt;
</span><del>-                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</del><ins>+                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</ins><span class="cx">                                         &lt;/div&gt;&lt;!-- .entry-meta --&gt;
</span><span class="cx"> 
</span><span class="cx">                                         &lt;div class=&quot;entry-summary&quot;&gt;
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytencommentsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/comments.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/comments.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/comments.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -74,17 +74,17 @@
</span><span class="cx"> 
</span><span class="cx">                                         &lt;div id=&quot;form-section-author&quot; class=&quot;form-section&quot;&gt;
</span><span class="cx">                                                 &lt;div class=&quot;form-label&quot;&gt;&lt;label for=&quot;author&quot;&gt;&lt;?php _e('Name', 'twentyten') ?&gt;&lt;/label&gt; &lt;?php if ($req) _e('&lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;', 'twentyten') ?&gt;&lt;/div&gt;
</span><del>-                                                &lt;div class=&quot;form-input&quot;&gt;&lt;input id=&quot;author&quot; name=&quot;author&quot; type=&quot;text&quot; value=&quot;&lt;?php echo $comment_author ?&gt;&quot; size=&quot;30&quot; tabindex=&quot;3&quot; /&gt;&lt;/div&gt;
</del><ins>+                                                &lt;div class=&quot;form-input&quot;&gt;&lt;input id=&quot;author&quot; name=&quot;author&quot; type=&quot;text&quot; value=&quot;&lt;?php echo esc_attr($comment_author) ?&gt;&quot; size=&quot;30&quot; tabindex=&quot;3&quot; /&gt;&lt;/div&gt;
</ins><span class="cx">                                         &lt;/div&gt;&lt;!-- #form-section-author .form-section --&gt;
</span><span class="cx"> 
</span><span class="cx">                                         &lt;div id=&quot;form-section-email&quot; class=&quot;form-section&quot;&gt;
</span><span class="cx">                                                 &lt;div class=&quot;form-label&quot;&gt;&lt;label for=&quot;email&quot;&gt;&lt;?php _e('Email', 'twentyten') ?&gt;&lt;/label&gt; &lt;?php if ($req) _e('&lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;', 'twentyten') ?&gt;&lt;/div&gt;
</span><del>-                                                &lt;div class=&quot;form-input&quot;&gt;&lt;input id=&quot;email&quot; name=&quot;email&quot; type=&quot;text&quot; value=&quot;&lt;?php echo $comment_author_email ?&gt;&quot; size=&quot;30&quot; tabindex=&quot;4&quot; /&gt;&lt;/div&gt;
</del><ins>+                                                &lt;div class=&quot;form-input&quot;&gt;&lt;input id=&quot;email&quot; name=&quot;email&quot; type=&quot;text&quot; value=&quot;&lt;?php echo esc_attr($comment_author_email) ?&gt;&quot; size=&quot;30&quot; tabindex=&quot;4&quot; /&gt;&lt;/div&gt;
</ins><span class="cx">                                         &lt;/div&gt;&lt;!-- #form-section-email .form-section --&gt;
</span><span class="cx"> 
</span><span class="cx">                                         &lt;div id=&quot;form-section-url&quot; class=&quot;form-section&quot;&gt;
</span><span class="cx">                                                 &lt;div class=&quot;form-label&quot;&gt;&lt;label for=&quot;url&quot;&gt;&lt;?php _e('Website', 'twentyten') ?&gt;&lt;/label&gt;&lt;/div&gt;
</span><del>-                                                &lt;div class=&quot;form-input&quot;&gt;&lt;input id=&quot;url&quot; name=&quot;url&quot; type=&quot;text&quot; value=&quot;&lt;?php echo $comment_author_url ?&gt;&quot; size=&quot;30&quot; tabindex=&quot;5&quot; /&gt;&lt;/div&gt;
</del><ins>+                                                &lt;div class=&quot;form-input&quot;&gt;&lt;input id=&quot;url&quot; name=&quot;url&quot; type=&quot;text&quot; value=&quot;&lt;?php echo esc_attr($comment_author_url) ?&gt;&quot; size=&quot;30&quot; tabindex=&quot;5&quot; /&gt;&lt;/div&gt;
</ins><span class="cx">                                         &lt;/div&gt;&lt;!-- #form-section-url .form-section --&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;?php endif; // if ( $user_ID ) ?&gt;
</span><span class="lines">@@ -100,7 +100,7 @@
</span><span class="cx"> 
</span><span class="cx">                                         &lt;?php do_action('comment_form', $post-&gt;ID); ?&gt;
</span><span class="cx"> 
</span><del>-                                        &lt;div class=&quot;form-submit&quot;&gt;&lt;input id=&quot;submit&quot; name=&quot;submit&quot; type=&quot;submit&quot; value=&quot;&lt;?php _e('Post Comment', 'twentyten') ?&gt;&quot; tabindex=&quot;7&quot; /&gt;&lt;input type=&quot;hidden&quot; name=&quot;comment_post_ID&quot; value=&quot;&lt;?php echo $id; ?&gt;&quot; /&gt;&lt;/div&gt;
</del><ins>+                                        &lt;div class=&quot;form-submit&quot;&gt;&lt;input id=&quot;submit&quot; name=&quot;submit&quot; type=&quot;submit&quot; value=&quot;&lt;?php esc_attr_e('Post Comment', 'twentyten') ?&gt;&quot; tabindex=&quot;7&quot; /&gt;&lt;input type=&quot;hidden&quot; name=&quot;comment_post_ID&quot; value=&quot;&lt;?php echo esc_attr($id); ?&gt;&quot; /&gt;&lt;/div&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;?php comment_id_fields(); ?&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytenfooterphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/footer.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/footer.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/footer.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -6,11 +6,11 @@
</span><span class="cx"> &lt;?php get_sidebar('footer'); ?&gt;
</span><span class="cx"> 
</span><span class="cx">                         &lt;div id=&quot;site-info&quot;&gt;
</span><del>-                                &lt;a href=&quot;&lt;?php bloginfo( 'url' ) ?&gt;/&quot; title=&quot;&lt;?php bloginfo( 'name' ) ?&gt;&quot; rel=&quot;home&quot;&gt;&lt;?php bloginfo( 'name' ) ?&gt;&lt;/a&gt;
</del><ins>+                                &lt;a href=&quot;&lt;?php bloginfo( 'url' ) ?&gt;/&quot; title=&quot;&lt;?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?&gt;&quot; rel=&quot;home&quot;&gt;&lt;?php bloginfo( 'name' ) ?&gt;&lt;/a&gt;
</ins><span class="cx">                         &lt;/div&gt;
</span><span class="cx"> 
</span><span class="cx">                         &lt;div id=&quot;site-generator&quot;&gt;
</span><del>-                                &lt;?php printf( __('Proudly powered by &lt;span id=&quot;generator-link&quot;&gt;%s&lt;/span&gt;.', 'twentyten'), '&lt;a href=&quot;http://wordpress.org/&quot; title=&quot;' . __( 'Semantic Personal Publishing Platform', 'twentyten' ) . '&quot; rel=&quot;generator&quot;&gt;' . __( 'WordPress', 'twentyten' ) . '&lt;/a&gt;' ); ?&gt;
</del><ins>+                                &lt;?php printf( __('Proudly powered by &lt;span id=&quot;generator-link&quot;&gt;%s&lt;/span&gt;.', 'twentyten'), '&lt;a href=&quot;http://wordpress.org/&quot; title=&quot;' . esc_attr__( 'Semantic Personal Publishing Platform', 'twentyten' ) . '&quot; rel=&quot;generator&quot;&gt;' . __( 'WordPress', 'twentyten' ) . '&lt;/a&gt;' ); ?&gt;
</ins><span class="cx">                         &lt;/div&gt;
</span><span class="cx"> 
</span><span class="cx">                 &lt;/div&gt;&lt;!-- #colophon --&gt;
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytenfunctionsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/functions.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/functions.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/functions.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -49,9 +49,8 @@
</span><span class="cx"> 
</span><span class="cx"> // Get the page number
</span><span class="cx"> function get_page_number() {
</span><del>-        if ( get_query_var('paged') ) {
</del><ins>+        if ( get_query_var('paged') )
</ins><span class="cx">                 print ' | ' . __( 'Page ' , 'twentyten') . get_query_var('paged');
</span><del>-        }
</del><span class="cx"> } // end get_page_number
</span><span class="cx"> 
</span><span class="cx"> 
</span><span class="lines">@@ -66,7 +65,7 @@
</span><span class="cx"> 
</span><span class="cx"> // Make a nice read more link on excerpts
</span><span class="cx"> function new_excerpt_more($more) {
</span><del>-return '&amp;nbsp;&amp;hellip; &lt;a href=&quot;'. get_permalink($post-&gt;ID) . '&quot;&gt;' . 'Continue&amp;nbsp;reading&amp;nbsp;&lt;span class=&quot;meta-nav&quot;&gt;&amp;rarr;&lt;/span&gt;' . '&lt;/a&gt;';
</del><ins>+        return '&amp;nbsp;&amp;hellip; &lt;a href=&quot;'. get_permalink() . '&quot;&gt;' . 'Continue&amp;nbsp;reading&amp;nbsp;&lt;span class=&quot;meta-nav&quot;&gt;&amp;rarr;&lt;/span&gt;' . '&lt;/a&gt;';
</ins><span class="cx"> }
</span><span class="cx"> add_filter('excerpt_more', 'new_excerpt_more');
</span><span class="cx"> 
</span><span class="lines">@@ -124,8 +123,8 @@
</span><span class="cx"> 
</span><span class="cx"> function remove_gallery_css() {
</span><span class="cx">         return &quot;&lt;div class='gallery'&gt;&quot;;
</span><del>-        }
-        add_filter('gallery_style', 'remove_gallery_css');
</del><ins>+}
+add_filter('gallery_style', 'remove_gallery_css');
</ins><span class="cx"> 
</span><span class="cx"> 
</span><span class="cx"> 
</span><span class="lines">@@ -240,5 +239,3 @@
</span><span class="cx"> 
</span><span class="cx"> // Add all the groovy widget areas
</span><span class="cx"> add_action( 'init', 'theme_widgets_init' );
</span><del>-
-
</del></span></pre></div>
<a id="trunkwpcontentthemestwentytenheaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/header.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/header.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/header.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -20,8 +20,8 @@
</span><span class="cx"> 
</span><span class="cx">         &lt;?php wp_head(); ?&gt;
</span><span class="cx"> 
</span><del>-        &lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; href=&quot;&lt;?php bloginfo('rss2_url'); ?&gt;&quot; title=&quot;&lt;?php printf( __( '%s latest posts', 'twentyten' ), wp_specialchars( get_bloginfo('name'), 1 ) ); ?&gt;&quot; /&gt;
-        &lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; href=&quot;&lt;?php bloginfo('comments_rss2_url') ?&gt;&quot; title=&quot;&lt;?php printf( __( '%s latest comments', 'twentyten' ), wp_specialchars( get_bloginfo('name'), 1 ) ); ?&gt;&quot; /&gt;
</del><ins>+        &lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; href=&quot;&lt;?php bloginfo('rss2_url'); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( '%s latest posts', 'twentyten' ), wp_specialchars( get_bloginfo('name'), 1 ) ); ?&gt;&quot; /&gt;
+        &lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; href=&quot;&lt;?php bloginfo('comments_rss2_url') ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( '%s latest comments', 'twentyten' ), wp_specialchars( get_bloginfo('name'), 1 ) ); ?&gt;&quot; /&gt;
</ins><span class="cx">         &lt;link rel=&quot;pingback&quot; href=&quot;&lt;?php bloginfo('pingback_url'); ?&gt;&quot; /&gt;
</span><span class="cx"> &lt;/head&gt;
</span><span class="cx"> 
</span><span class="lines">@@ -32,7 +32,7 @@
</span><span class="cx">                 &lt;div id=&quot;masthead&quot;&gt;
</span><span class="cx"> 
</span><span class="cx">                         &lt;div id=&quot;branding&quot;&gt;
</span><del>-                                &lt;div id=&quot;site-title&quot;&gt;&lt;span&gt;&lt;a href=&quot;&lt;?php bloginfo( 'url' ) ?&gt;/&quot; title=&quot;&lt;?php bloginfo( 'name' ) ?&gt;&quot; rel=&quot;home&quot;&gt;&lt;?php bloginfo( 'name' ) ?&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
</del><ins>+                                &lt;div id=&quot;site-title&quot;&gt;&lt;span&gt;&lt;a href=&quot;&lt;?php bloginfo( 'url' ) ?&gt;/&quot; title=&quot;&lt;?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?&gt;&quot; rel=&quot;home&quot;&gt;&lt;?php bloginfo( 'name' ) ?&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
</ins><span class="cx">                                 &lt;div id=&quot;site-description&quot;&gt;&lt;?php bloginfo( 'description' ) ?&gt;&lt;/div&gt;
</span><span class="cx"> 
</span><span class="cx">                                 &lt;?php
</span><span class="lines">@@ -45,7 +45,7 @@
</span><span class="cx">                         &lt;/div&gt;&lt;!-- #branding --&gt;
</span><span class="cx"> 
</span><span class="cx">                         &lt;div id=&quot;access&quot;&gt;
</span><del>-                                &lt;div class=&quot;skip-link screen-reader-text&quot;&gt;&lt;a href=&quot;#content&quot; title=&quot;&lt;?php _e( 'Skip to content', 'twentyten' ) ?&gt;&quot;&gt;&lt;?php _e( 'Skip to content', 'twentyten' ) ?&gt;&lt;/a&gt;&lt;/div&gt;
</del><ins>+                                &lt;div class=&quot;skip-link screen-reader-text&quot;&gt;&lt;a href=&quot;#content&quot; title=&quot;&lt;?php esc_attr_e( 'Skip to content', 'twentyten' ) ?&gt;&quot;&gt;&lt;?php _e( 'Skip to content', 'twentyten' ) ?&gt;&lt;/a&gt;&lt;/div&gt;
</ins><span class="cx">                                 &lt;?php wp_page_menu( 'sort_column=menu_order' ); ?&gt;
</span><span class="cx">                         &lt;/div&gt;&lt;!-- #access --&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytenindexphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/index.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/index.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/index.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -13,20 +13,20 @@
</span><span class="cx">     &lt;?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;
</span><span class="cx">     &lt;?php if ( in_category( 'Gallery' ) ) { ?&gt;
</span><span class="cx">             &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
</span><del>-                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( __('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</del><ins>+                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</ins><span class="cx"> 
</span><span class="cx">                         &lt;div class=&quot;entry-meta&quot;&gt;
</span><span class="cx">                                 &lt;span class=&quot;meta-prep meta-prep-author&quot;&gt;&lt;?php _e('Posted on ', 'twentyten'); ?&gt;&lt;/span&gt;
</span><span class="cx">                                 &lt;a href=&quot;&lt;?php
</span><span class="cx"> the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_time('Y-m-d\TH:i:sO') ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/span&gt;&lt;/a&gt;
</span><span class="cx">                                 &lt;span class=&quot;meta-sep&quot;&gt; &lt;?php _e('by ', 'twentyten'); ?&gt; &lt;/span&gt;
</span><del>-                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</del><ins>+                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</ins><span class="cx">                         &lt;/div&gt;&lt;!-- .entry-meta --&gt;
</span><span class="cx"> 
</span><span class="cx">                         &lt;div class=&quot;entry-content&quot;&gt;
</span><span class="cx">                                 &lt;div class=&quot;gallery-thumb&quot;&gt;&lt;a class=&quot;size-thumbnail&quot; href=&quot;&lt;?php permalink_link() ?&gt;&quot;&gt;&lt;?php $hilite = $wpdb-&gt;get_var( &quot;SELECT ID FROM $wpdb-&gt;posts WHERE post_parent = '$post-&gt;ID' AND post_type = 'attachment' LIMIT 1&quot; ); echo wp_get_attachment_image( $hilite, 'thumbnail' );?&gt;&lt;/a&gt;&lt;/div&gt;
</span><span class="cx"> 
</span><del>-                                &lt;p&gt;&lt;em&gt;&lt;?php printf( __('This gallery contains &lt;a %1$s&gt;%2$s photos&lt;/a&gt;.', 'twentyten'), 'href=&quot;' . get_permalink() . '&quot; title=&quot;' . sprintf( __('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ) . '&quot; rel=&quot;bookmark&quot;', $wpdb-&gt;get_var( &quot;SELECT COUNT(*) FROM $wpdb-&gt;posts WHERE post_parent = '$post-&gt;ID' AND post_type = 'attachment'&quot; )); ?&gt;&lt;/em&gt;&lt;/p&gt;
</del><ins>+                                &lt;p&gt;&lt;em&gt;&lt;?php printf( __('This gallery contains &lt;a %1$s&gt;%2$s photos&lt;/a&gt;.', 'twentyten'), 'href=&quot;' . get_permalink() . '&quot; title=&quot;' . sprintf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ) . '&quot; rel=&quot;bookmark&quot;', $wpdb-&gt;get_var( &quot;SELECT COUNT(*) FROM $wpdb-&gt;posts WHERE post_parent = '$post-&gt;ID' AND post_type = 'attachment'&quot; )); ?&gt;&lt;/em&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx">                                 &lt;?php the_excerpt(''); ?&gt;
</span><span class="cx">                         &lt;/div&gt;&lt;!-- .entry-content --&gt;
</span><span class="lines">@@ -36,7 +36,7 @@
</span><span class="cx">                                     $category_id = get_cat_ID( 'Gallery' );
</span><span class="cx">                                     $category_link = get_category_link( $category_id );
</span><span class="cx">                                 ?&gt;
</span><del>-                                &lt;a href=&quot;&lt;?php echo $category_link; ?&gt;&quot; title=&quot;&lt;?php _e('View posts in the Gallery category', 'twentyten'); ?&gt;&quot;&gt;&lt;?php _e('More Galleries', 'twentyten'); ?&gt;&lt;/a&gt;
</del><ins>+                                &lt;a href=&quot;&lt;?php echo $category_link; ?&gt;&quot; title=&quot;&lt;?php esc_attr_e('View posts in the Gallery category', 'twentyten'); ?&gt;&quot;&gt;&lt;?php _e('More Galleries', 'twentyten'); ?&gt;&lt;/a&gt;
</ins><span class="cx"> 
</span><span class="cx">                                 &lt;span class=&quot;meta-sep&quot;&gt; | &lt;/span&gt;
</span><span class="cx"> 
</span><span class="lines">@@ -58,7 +58,7 @@
</span><span class="cx">                                 &lt;a href=&quot;&lt;?php
</span><span class="cx"> the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_time('Y-m-d\TH:i:sO') ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/span&gt;&lt;/a&gt;
</span><span class="cx">                                 &lt;span class=&quot;meta-sep&quot;&gt; &lt;?php _e('by ', 'twentyten'); ?&gt; &lt;/span&gt;
</span><del>-                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</del><ins>+                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</ins><span class="cx">                                 &lt;span class=&quot;meta-sep&quot;&gt; | &lt;/span&gt;
</span><span class="cx">                                 &lt;span class=&quot;comments-link&quot;&gt;&lt;?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ) ?&gt;&lt;/span&gt;
</span><span class="cx">                                 &lt;?php edit_post_link( __( 'Edit', 'twentyten' ), &quot;&lt;span class=\&quot;meta-sep\&quot;&gt;|&lt;/span&gt;\n\t\t\t\t\t\t&lt;span class=\&quot;edit-link\&quot;&gt;&quot;, &quot;&lt;/span&gt;\n\t\t\t\t\t\n&quot; ) ?&gt;
</span><span class="lines">@@ -68,14 +68,14 @@
</span><span class="cx"> 
</span><span class="cx">     &lt;?php } else { ?&gt;
</span><span class="cx">                 &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
</span><del>-                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( __('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</del><ins>+                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</ins><span class="cx"> 
</span><span class="cx">                         &lt;div class=&quot;entry-meta&quot;&gt;
</span><span class="cx">                                 &lt;span class=&quot;meta-prep meta-prep-author&quot;&gt;&lt;?php _e('Posted on ', 'twentyten'); ?&gt;&lt;/span&gt;
</span><span class="cx">                                 &lt;a href=&quot;&lt;?php
</span><span class="cx"> the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_time('Y-m-d\TH:i:sO') ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/span&gt;&lt;/a&gt;
</span><span class="cx">                                 &lt;span class=&quot;meta-sep&quot;&gt; &lt;?php _e('by ', 'twentyten'); ?&gt; &lt;/span&gt;
</span><del>-                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot;2 href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</del><ins>+                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot;2 href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</ins><span class="cx">                         &lt;/div&gt;&lt;!-- .entry-meta --&gt;
</span><span class="cx"> 
</span><span class="cx">                         &lt;div class=&quot;entry-content&quot;&gt;
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytensearchphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/search.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/search.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/search.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -17,7 +17,7 @@
</span><span class="cx"> &lt;?php while ( have_posts() ) : the_post() ?&gt;
</span><span class="cx"> 
</span><span class="cx">                                 &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
</span><del>-                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( __('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</del><ins>+                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;?php if ( $post-&gt;post_type == 'post' ) { ?&gt;
</span><span class="cx">                                         &lt;div class=&quot;entry-meta&quot;&gt;
</span><span class="lines">@@ -25,7 +25,7 @@
</span><span class="cx">                                                 &lt;a href=&quot;&lt;?php
</span><span class="cx">                 the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_time('Y-m-d\TH:i:sO') ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/span&gt;&lt;/a&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-sep&quot;&gt; &lt;?php _e('by ', 'twentyten'); ?&gt; &lt;/span&gt;
</span><del>-                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</del><ins>+                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</ins><span class="cx">                                         &lt;/div&gt;&lt;!-- .entry-meta --&gt;
</span><span class="cx"> &lt;?php } ?&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytensearchformphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/searchform.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/searchform.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/searchform.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><del>-    &lt;form id=&quot;searchform&quot; name=&quot;searchform&quot; method=&quot;get&quot; action=&quot;/&quot;&gt;
</del><ins>+    &lt;form id=&quot;searchform&quot; name=&quot;searchform&quot; method=&quot;get&quot; action=&quot;&lt;?php echo home_url(); ?&gt;&quot;&gt;
</ins><span class="cx">                 &lt;div&gt;
</span><span class="cx">                         &lt;label for=&quot;s&quot;&gt;&lt;?php _e('Search', 'twentyten'); ?&gt;&lt;/label&gt;
</span><span class="cx">                         &lt;input type=&quot;text&quot; id=&quot;s&quot; name=&quot;s&quot; /&gt;
</span><del>-                        &lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;&lt;?php _e('Search', 'twentyten'); ?&gt;&quot; /&gt;
</del><ins>+                        &lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;&lt;?php esc_attr_e('Search', 'twentyten'); ?&gt;&quot; /&gt;
</ins><span class="cx">                 &lt;/div&gt;
</span><span class="cx">     &lt;/form&gt;
</span><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytensinglephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/single.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/single.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/single.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -15,7 +15,7 @@
</span><span class="cx"> 
</span><span class="cx">                                         &lt;div class=&quot;entry-meta&quot;&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-prep meta-prep-author&quot;&gt;&lt;?php _e('Posted by ', 'twentyten'); ?&gt;&lt;/span&gt;
</span><del>-                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</del><ins>+                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</ins><span class="cx">                                                 &lt;span class=&quot;meta-sep&quot;&gt; &lt;?php _e('on ', 'twentyten'); ?&gt; &lt;/span&gt;
</span><span class="cx">                                                 &lt;a href=&quot;&lt;?php
</span><span class="cx"> the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_time('Y-m-d\TH:i:sO') ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/span&gt;&lt;/a&gt;
</span><span class="lines">@@ -36,7 +36,7 @@
</span><span class="cx">                                                         &lt;h2&gt;&lt;?php _e('About ', 'twentyten'); ?&gt;&lt;?php the_author(); ?&gt;&lt;/h2&gt;
</span><span class="cx"> &lt;?php the_author_meta('description'); ?&gt;
</span><span class="cx">                                                         &lt;div id=&quot;author-link&quot;&gt;
</span><del>-                                                                &lt;a href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php _e('View all posts by ', 'twentyten'); ?&gt;&lt;?php the_author(); ?&gt; &amp;rarr;&lt;/a&gt;
</del><ins>+                                                                &lt;a href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php _e('View all posts by ', 'twentyten'); ?&gt;&lt;?php the_author(); ?&gt; &amp;rarr;&lt;/a&gt;
</ins><span class="cx">                                                         &lt;/div&gt;&lt;!-- #author-link        --&gt;
</span><span class="cx">                                                 &lt;/div&gt;&lt;!-- #author-description        --&gt;
</span><span class="cx">                                         &lt;/div&gt;&lt;!-- .entry-author-info --&gt;
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytentagphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/tag.php (13028 => 13029)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/tag.php        2010-02-08 18:27:02 UTC (rev 13028)
+++ trunk/wp-content/themes/twentyten/tag.php        2010-02-08 20:28:13 UTC (rev 13029)
</span><span class="lines">@@ -19,13 +19,13 @@
</span><span class="cx"> &lt;?php while ( have_posts() ) : the_post(); ?&gt;
</span><span class="cx"> 
</span><span class="cx">                                 &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
</span><del>-                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( __('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</del><ins>+                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</ins><span class="cx"> 
</span><span class="cx">                                         &lt;div class=&quot;entry-meta&quot;&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-prep meta-prep-author&quot;&gt;&lt;?php _e('Posted on ', 'twentyten'); ?&gt;&lt;/span&gt;
</span><span class="cx">                                                 &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_time('Y-m-d\TH:i:sO') ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;&lt;?php the_time( get_option( 'date_format' ) ); ?&gt;&lt;/span&gt;&lt;/a&gt;
</span><span class="cx">                                                 &lt;span class=&quot;meta-sep&quot;&gt; &lt;?php _e('by ', 'twentyten'); ?&gt; &lt;/span&gt;
</span><del>-                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( __( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</del><ins>+                                                &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;&lt;?php echo get_author_posts_url( $authordata-&gt;ID, $authordata-&gt;user_nicename ); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata-&gt;display_name ); ?&gt;&quot;&gt;&lt;?php the_author(); ?&gt;&lt;/a&gt;&lt;/span&gt;
</ins><span class="cx">                                         &lt;/div&gt;&lt;!-- .entry-meta --&gt;
</span><span class="cx"> 
</span><span class="cx">                                         &lt;div class=&quot;entry-summary&quot;&gt;
</span></span></pre>
</div>
</div>

</body>
</html>