That works (and is actually what I use personally), but some Theme developers may not want anything to display in place of the Post Title if none is provided. Doing so is certainly acceptable, but does not negate the requirement to provide a link to the single-post view.<div>
<br></div><div>Note that the developer doesn&#39;t *have* to use the Post date/time stamp for this link. The developer can use whatever he wants - so long as the link is provided.</div><div><br></div><div>Chip<br><br><div class="gmail_quote">
On Wed, Apr 20, 2011 at 4:15 PM, Philip Walton <span dir="ltr">&lt;<a href="mailto:philip@philipwalton.com">philip@philipwalton.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">


  
    
  
  <div bgcolor="#ffffff" text="#000000">
    Right, I get that. I guess perhaps it&#39;s more an issue of why
    WordPress allows you to publish a post without a title in the first
    place. It seems to me that posts without titles have bigger problems
    than whether or not a user can get to them.<br>
    <br>
    Actually, as I&#39;m writing this email, Emil posted a solution on the
    trac ticket that i really like:<br>
    <pre>/**
  * Where the post has no post title, but must still display a link to the
 single-page post view.
  */
 add_filter(&#39;the_title&#39;, &#39;blank_slate_title&#39;);

 function blank_slate_title($title) {
     if ($title == &#39;&#39;) {
         return &#39;Untitled&#39;;
     } else {
         return $title;
     }
 }

</pre>
    This way you don&#39;t have to include an extra link if you don&#39;t want
    to.<br>
    <br>
    Thanks, Emil!<div><div></div><div class="h5"><br>
    <br>
    <br>
    On 4/20/11 1:58 PM, Chip Bennett wrote:
    <blockquote type="cite">Because the user needs to have *some* way of reaching
      the single-post view.
      <div><br>
      </div>
      <div>Chip<br>
        <br>
        <div class="gmail_quote">On Wed, Apr 20, 2011 at 3:55 PM, Philip
          Walton <span dir="ltr">&lt;<a href="mailto:philip@philipwalton.com" target="_blank">philip@philipwalton.com</a>&gt;</span>
          wrote:<br>
          <blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204, 204, 204);padding-left:1ex">A user, in response to a rejected them,
            posed this question re: smgrundy&#39;s review:<br>
            <br>
            Cannot access single-page views of posts without titles from
            the index.<br>
            -&gt; That&#39;s good, consistent and how I want it throughout
            the site. Is this mandatory?<br>
            <br>
            I&#39;ve wondered the same things as well. It&#39;s always seemed a
            little odd to me to have the post date link to the post
            itself. Personally I think the date should link to a date
            page. I know there are other ways to create a title-less
            permalink, but this is the most common.<br>
            <br>
            Still, what is the rationale behind requiring posts with no
            titles to have a permalink to them?<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>
        <br>
      </div>
      <pre><fieldset></fieldset>
_______________________________________________
theme-reviewers mailing list
<a href="mailto:theme-reviewers@lists.wordpress.org" target="_blank">theme-reviewers@lists.wordpress.org</a>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a>
</pre>
    </blockquote>
  </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>