<!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>[13129] trunk/wp-content/themes/twentyten: Fix comment listing,
  Correct Indentations.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13129">13129</a></dd>
<dt>Author</dt> <dd>dd32</dd>
<dt>Date</dt> <dd>2010-02-14 01:12:51 +0000 (Sun, 14 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Fix comment listing, Correct Indentations. See <a href="http://trac.wordpress.org/ticket/9015">#9015</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpcontentthemestwentytenattachmentphp">trunk/wp-content/themes/twentyten/attachment.php</a></li>
<li><a href="#trunkwpcontentthemestwentytencommentsphp">trunk/wp-content/themes/twentyten/comments.php</a></li>
<li><a href="#trunkwpcontentthemestwentytenfunctionsphp">trunk/wp-content/themes/twentyten/functions.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpcontentthemestwentytenattachmentphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/attachment.php (13128 => 13129)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/attachment.php        2010-02-14 01:00:22 UTC (rev 13128)
+++ trunk/wp-content/themes/twentyten/attachment.php        2010-02-14 01:12:51 UTC (rev 13129)
</span><span class="lines">@@ -21,19 +21,18 @@
</span><span class="cx"> 
</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><del>-&lt;?php if ( wp_attachment_is_image( $post-&gt;ID ) ) : ?&gt;
-                                                &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;?php
-                                                        echo wp_get_attachment_image( $post-&gt;ID, array($content_width, $content_width) ); // max $content_width wide or high.
-                                                ?&gt;&lt;/a&gt;&lt;/p&gt;
</del><ins>+                                                &lt;?php if ( wp_attachment_is_image() ) : ?&gt;
+                                                        &lt;p class=&quot;attachment&quot;&gt;&lt;a href=&quot;&lt;?php echo wp_get_attachment_url(); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_the_title() ); ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;?php
+                                                                echo wp_get_attachment_image( $post-&gt;ID, array($content_width, $content_width) ); // max $content_width wide or high.
+                                                        ?&gt;&lt;/a&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><del>-
-                                &lt;div id=&quot;nav-below&quot; class=&quot;navigation&quot;&gt;
-                                        &lt;div class=&quot;nav-previous&quot;&gt;&lt;?php previous_image_link( false ); ?&gt;&lt;/div&gt;
-                                        &lt;div class=&quot;nav-next&quot;&gt;&lt;?php next_image_link( false ); ?&gt;&lt;/div&gt;
-                                &lt;/div&gt;&lt;!-- #nav-below --&gt;
-&lt;?php else : ?&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($post-&gt;ID) ); ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;?php echo basename(get_permalink()); ?&gt;&lt;/a&gt;
-&lt;?php endif; ?&gt;
</del><ins>+                                                        &lt;div id=&quot;nav-below&quot; class=&quot;navigation&quot;&gt;
+                                                                &lt;div class=&quot;nav-previous&quot;&gt;&lt;?php previous_image_link( false ); ?&gt;&lt;/div&gt;
+                                                                &lt;div class=&quot;nav-next&quot;&gt;&lt;?php next_image_link( false ); ?&gt;&lt;/div&gt;
+                                                        &lt;/div&gt;&lt;!-- #nav-below --&gt;
+                                                &lt;?php else : ?&gt;
+                                                        &lt;a href=&quot;&lt;?php echo wp_get_attachment_url(); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_the_title() ); ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;?php echo basename(get_permalink()); ?&gt;&lt;/a&gt;
+                                                &lt;?php endif; ?&gt;
</ins><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="cx"> 
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytencommentsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/comments.php (13128 => 13129)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/comments.php        2010-02-14 01:00:22 UTC (rev 13128)
+++ trunk/wp-content/themes/twentyten/comments.php        2010-02-14 01:12:51 UTC (rev 13129)
</span><span class="lines">@@ -28,7 +28,7 @@
</span><span class="cx"> &lt;?php endif; // check for comment navigation ?&gt;
</span><span class="cx"> 
</span><span class="cx">                         &lt;ol class=&quot;commentlist&quot;&gt;
</span><del>-                                &lt;?php wp_list_comments( array('callback' =&gt; 'twentyten_comment') ); ?&gt;
</del><ins>+                                &lt;?php wp_list_comments( array('callback' =&gt; 'twentyten_list_comment') ); ?&gt;
</ins><span class="cx">                         &lt;/ol&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php $total_pages = get_comment_pages_count(); if ( $total_pages &gt; 1 ) : // are there comments to navigate through ?&gt;
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytenfunctionsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/functions.php (13128 => 13129)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/functions.php        2010-02-14 01:00:22 UTC (rev 13128)
+++ trunk/wp-content/themes/twentyten/functions.php        2010-02-14 01:12:51 UTC (rev 13129)
</span><span class="lines">@@ -98,8 +98,9 @@
</span><span class="cx"> 
</span><span class="cx"> // Make the Visual Editor styles match the theme's styles
</span><span class="cx"> function twentyten_my_editor_style( $url ) {
</span><del>-                if ( !empty($url) )
-                        $url .= ',';
</del><ins>+        if ( !empty($url) )
+                $url .= ',';
+
</ins><span class="cx">         // Change the path here if using sub-directory
</span><span class="cx">         $url .= trailingslashit( get_stylesheet_directory_uri() ) . 'editor-style.css';
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>