Mailing List Archive

html comments handling bug
Wiki text:
<!-- ala -->ma<!-- kota -->.
PHP matches <!--.*-->, so output is:
.
instead of:
ma.

Fix:
change to <!--.*?-->

Around line 1026 in OutputPage.php
Re: html comments handling bug [ In reply to ]
Fixed. Now uses ungreedy match.

-- brion vibber (brion @ pobox.com)

On Wed, 12 Feb 2003, Tomasz Wegrzanowski wrote:

> Wiki text:
> <!-- ala -->ma<!-- kota -->.
> PHP matches <!--.*-->, so output is:
> .
> instead of:
> ma.
>
> Fix:
> change to <!--.*?-->
>
> Around line 1026 in OutputPage.php
> _______________________________________________
> Wikitech-l mailing list
> Wikitech-l@wikipedia.org
> http://www.wikipedia.org/mailman/listinfo/wikitech-l
>
>
>
>