issue unit AdvMetroDlgs

In the HTMLEncode function of unit AdvMetroDlgs.pas, the two lines
res := StringReplace(res, '<','&',[rfReplaceAll]);
res := StringReplace(res, '<','"',[rfReplaceAll]);
should be
res := StringReplace(res, '&','&',[rfReplaceAll]);
res := StringReplace(res, '"','"',[rfReplaceAll]);

Thanks for reporting. This will be fixed in the next update.