Hi Rüdiger,
from the BZ it looks as if 2.2.x is affected as well - shouldnt we
backport this?

Günter.

rpl...@apache.org schrieb:
> Author: rpluem
> Date: Wed Aug 12 20:42:48 2009
> New Revision: 803704
> 
> URL: http://svn.apache.org/viewvc?rev=803704&view=rev
> Log:
> * Correctly create an empty cell if the description for a file is missing.
> 
> PR: 47682
> Submitted by: Peter Poeml <poeml suse.de>
> Reviewed by: rpluem
> 
> Modified:
>     httpd/httpd/trunk/CHANGES
>     httpd/httpd/trunk/modules/generators/mod_autoindex.c
> 
> Modified: httpd/httpd/trunk/CHANGES
> URL: 
> http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=803704&r1=803703&r2=803704&view=diff
> ==============================================================================
> --- httpd/httpd/trunk/CHANGES [utf-8] (original)
> +++ httpd/httpd/trunk/CHANGES [utf-8] Wed Aug 12 20:42:48 2009
> @@ -2,6 +2,9 @@
>  
>  Changes with Apache 2.3.3
>  
> +  *) mod_autoindex: Correctly create an empty cell if the description
> +     for a file is missing. PR 47682 [Peter Poeml <poeml suse.de>]
> +
>    *) ab: Fix broken error messages after resolver or connect() failures.
>       [Jeff Trawick]
>  
> 
> Modified: httpd/httpd/trunk/modules/generators/mod_autoindex.c
> URL: 
> http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/generators/mod_autoindex.c?rev=803704&r1=803703&r2=803704&view=diff
> ==============================================================================
> --- httpd/httpd/trunk/modules/generators/mod_autoindex.c (original)
> +++ httpd/httpd/trunk/modules/generators/mod_autoindex.c Wed Aug 12 20:42:48 
> 2009
> @@ -1738,9 +1738,9 @@
>                                                          desc_width), NULL);
>                      }
>                  }
> -            }
> -            else {
> -                ap_rputs("</td><td>&nbsp;", r);
> +                else {
> +                    ap_rputs("</td><td>&nbsp;", r);
> +                }
>              }
>              ap_rputs("</td></tr>\n", r);
>          }
> 
> 
> 


Reply via email to