Al Maw wrote:
return super.getVariation() + "_" + size;
Should be:
String s = super.getVariation();
return s == null ? size : s + "_" + size;
Otherwise the default locale HomePage_big.html won't work and will look
for HomePage_null_big.html. ;-)
Regards, Al --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
