I agree with Phil.<div><br></div><div>This statement is not in the Guidelines:</div><div><br></div><div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><font face="Times New Roman" style="font-size:16px">Site information is REQUIRED to be called using the correct template tag: </font><tt style="font-size:16px">get_stylesheet_uri()</tt><font face="Times New Roman" style="font-size:16px"> rather than </font><tt style="font-size:16px">get_stylesheet_directory_uri() . &#39;/style.css&#39;</tt></div>
</blockquote></div><div><br></div><div>What IS in the Guidelines is this:</div><div><br></div><div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><span style="font-family:sans-serif;font-size:13px;line-height:22px;text-align:left;background-color:rgb(255,255,255)">Themes are </span><b style="text-align:left;font-family:sans-serif;font-size:13px;line-height:22px;background-color:rgb(255,255,255)">required</b><span style="font-family:sans-serif;font-size:13px;line-height:22px;text-align:left;background-color:rgb(255,255,255)"> to use </span><tt style="text-align:left;font-size:13px;line-height:22px;background-color:rgb(255,255,255)">*_url()</tt><span style="font-family:sans-serif;font-size:13px;line-height:22px;text-align:left;background-color:rgb(255,255,255)"> template tags, rather than </span><tt style="text-align:left;font-size:13px;line-height:22px;background-color:rgb(255,255,255)">bloginfo()</tt><span style="font-family:sans-serif;font-size:13px;line-height:22px;text-align:left;background-color:rgb(255,255,255)"> equivalents.</span></div>
<div style="text-align:left"><font face="sans-serif"><span style="line-height:22px">AND</span></font></div><div style="text-align:left"><span style="font-family:sans-serif;font-size:13px;line-height:22px;background-color:rgb(255,255,255)">Themes are </span><b style="font-family:sans-serif;font-size:13px;line-height:22px;background-color:rgb(255,255,255)">required</b><span style="font-family:sans-serif;font-size:13px;line-height:22px;background-color:rgb(255,255,255)"> to use </span><tt style="font-size:13px;line-height:22px;background-color:rgb(255,255,255)"><a href="http://codex.wordpress.org/Function_Reference/get_stylesheet_directory" title="Function Reference/get stylesheet directory" style="text-decoration:none;color:rgb(76,166,207)">get_stylesheet_directory()</a></tt><span style="font-family:sans-serif;font-size:13px;line-height:22px;background-color:rgb(255,255,255)"> rather than </span><tt style="font-size:13px;line-height:22px;background-color:rgb(255,255,255)">STYLESHEETPATH</tt><span style="font-family:sans-serif;font-size:13px;line-height:22px;background-color:rgb(255,255,255)"> to return the stylesheet path.</span></div>
</blockquote></div><div><br></div><div>The important points:</div><div><ul><li>Use get_stylesheet_directory() instead of the STYLESHEETPATH constant</li><li>Use get_stylesheet_directory*() instead of its get_bloginfo() equivalent</li>
<li>Use get_stylesheet_directory*() instead of get_template_directory*() when the included path is intended to be able to be overridden by a Child Theme</li></ul></div><div><br></div><div>Chip<br><br><div class="gmail_quote">
On Fri, Jun 8, 2012 at 8:44 AM, Philip M. Hofer (Frumph) <span dir="ltr">&lt;<a href="mailto:philip@frumph.net" target="_blank">philip@frumph.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div dir="ltr">
<div dir="ltr">
<div style="font-size:12pt;font-family:&#39;Calibri&#39;">
<div>Okay this is a little bit out of hand.</div>
<div> </div>
<div>^ reference </div>
<div> </div>
<div><font face="Times New Roman">Site information is REQUIRED to be called 
using the correct template tag: </font><tt>get_stylesheet_uri()</tt><font face="Times New Roman"> rather than </font><tt>get_stylesheet_directory_uri() . 
&#39;/style.css&#39;</tt></div>
<div><tt></tt> </div>
<div><tt></tt> </div>
<div><tt>^ Both are internal functions that do the EXACT same thing:</tt></div>
<div><tt></tt> </div>
<div><tt>Case:</tt></div>
<div><tt></tt> </div>
<div>function get_stylesheet_uri() {</div>
<div>    $stylesheet_dir_uri = 
get_stylesheet_directory_uri();</div>
<div>    $stylesheet_uri = $stylesheet_dir_uri . 
&#39;/style.css&#39;;</div>
<div>    return apply_filters(&#39;stylesheet_uri&#39;, $stylesheet_uri, 
$stylesheet_dir_uri);</div>
<div>}</div>
<div> </div>
<div>This is not a reason to invalidate a theme.  Neither is adding 
remaining parameters on a completely valid function call.</div>
<div> </div>
<div> </div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal">
<div style="FONT:10pt tahoma">
<div><font size="3" face="Calibri"></font> </div>
<div style="BACKGROUND:#f5f5f5">
<div><b>From:</b> <a title="georgemamadashvili@gmail.com" href="mailto:georgemamadashvili@gmail.com" target="_blank">George Mamadashvili</a> </div>
<div><b>Sent:</b> Friday, June 08, 2012 5:43 AM</div>
<div><b>To:</b> <a title="theme-reviewers@lists.wordpress.org" href="mailto:theme-reviewers@lists.wordpress.org" target="_blank">theme-reviewers@lists.wordpress.org</a> 
</div>
<div><b>Subject:</b> Re: [theme-reviewers] (no subject)</div></div></div>
<div> </div></div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal"><div><div class="h5">Use 
more simple solution -  wp_enqueue_style( &#39;krakatau-style&#39;, 
get_stylesheet_uri() ); 
<div> </div>
<div>You need to use get_stylesheet_* functions when enqueueing style.css so 
child themes can easily override it.<br><br>
<div class="gmail_quote">On Fri, Jun 8, 2012 at 2:39 PM, hal-android <span dir="ltr">&lt;<a href="mailto:hasilent00@gmail.com" target="_blank">hasilent00@gmail.com</a>&gt;</span> wrote:<br>
<blockquote style="BORDER-LEFT:#ccc 1px solid;MARGIN:0px 0px 0px 0.8ex;PADDING-LEFT:1ex" class="gmail_quote">Hi.<br>Can anyone help me here?<br>I&#39;m really confused about 
  this.<br>In the previous ticket :<br><a href="http://themes.trac.wordpress.org/ticket/8039" target="_blank">http://themes.trac.wordpress.org/ticket/8039</a><br>wp_register_style(&#39;default&#39;, 
  get_stylesheet_directory_uri() .<br>&#39;/style.css&#39;, array(), 
  &#39;0.0.3&#39;);<br>wp_enqueue_style(&#39;default&#39;);<br><br><br>And on this ticket I 
  replace<br><a href="http://themes.trac.wordpress.org/ticket/8069#comment:3" target="_blank">http://themes.trac.wordpress.org/ticket/8069#comment:3</a><br><br>wp_enqueue_style(&#39;krakatau_style&#39;, 
  get_template_directory_uri() .<br>&#39;/style.css&#39;, array(), 
  &#39;0.0.5&#39;);<br><br><br>Please help me..what should i do?<br><br>Many 
  thank&#39;s<br>amdhas<br>_______________________________________________<br>theme-reviewers 
  mailing list<br><a href="mailto:theme-reviewers@lists.wordpress.org" target="_blank">theme-reviewers@lists.wordpress.org</a><br><a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
</blockquote></div>
<div> </div></div>
</div></div><p>
</p><hr><div class="im">
_______________________________________________<br>theme-reviewers mailing 
list<br><a href="mailto:theme-reviewers@lists.wordpress.org" target="_blank">theme-reviewers@lists.wordpress.org</a><br><a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
</div><p></p></div></div></div></div>
<br>_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
<br></blockquote></div><br></div>