|
|
|
Actually I've added the following code to maintain backward compatibility:
String title = (String) params.get(RAW_PARAMS_KEY); if (TextUtils.stringSet( title ) && (title.startsWith("value=") || title.indexOf("|") > -1)) { title = (String) params.get("value"); } if (!TextUtils.stringSet( title )) { title = "Send"; } @Dan - What's the upshot of that? My Java skimming skills are
It means that {mail-input:blurb} will be parsed the same as {mail-input:value=blurb} so that the old usage format will still be supported.
|
||||||||||||||||||||||||||||||||||||||||||||
As there is a sensible default of "Send", I don't think this will be much of an issue as is worth including.