You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by Alec Bau <Al...@msdw.com> on 2000/09/14 18:17:16 UTC

Minor bug in LocalStrings.properties

org.apache.struts.taglib.LocalString.properties has a small bug in
entry:

    common.io=Encountered input/output error: {1}

Naturally for proper parameter substitution token should be "{0}" and
not "{1}":

    common.io=Encountered input/output error: {0}

Thanks.