the validator engine does not recognize the new msapplication metadata name values listed here:
http://msdn.microsoft.com/en-us/library ... 85%29.aspx
Maybe this is something to improve. I'm writing this, because the validator engine already knows older name values such as msapplication-TileColor, for example.
This is, however, not a show-stopper. As kind as the software package is, it allows me to add missing functionality on my own (really cool, both thumbs up). Don't know if someone else is interested in it, but here it goes:
Code: Select all
function onMessageID_2013070902() {
if strpos($omid_msgtext, '"msapplication-square70x70logo"') >= 0 {
$omid_cancel = true;
}
else {
if strpos($omid_msgtext, '"msapplication-square150x150logo"') >= 0 {
$omid_cancel = true;
}
else {
if strpos($omid_msgtext, '"msapplication-square310x310logo"') >= 0 {
$omid_cancel = true;
}
else {
if strpos($omid_msgtext, '"msapplication-wide310x150logo"') >= 0 {
$omid_cancel = true;
}
else {
if strpos($omid_msgtext, '"msapplication-notification"') >= 0 {
$omid_cancel = true;
}
else {
if strpos($omid_msgtext, '"msapplication-config"') >= 0 {
$omid_cancel = true;
}
}
}
}
}
}
}

Rene