.autotest

This commit is contained in:
Mirek Fidler 2026-02-04 08:44:35 +01:00
parent 795d66d12a
commit 896270ecc7
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ CONSOLE_APP_MAIN
{ "www.google.com", "</script>" },
{ "http://wattsupwiththat.com/", "</html>" },
// { "http://www.rcalbum.cz", "</html>" },
{ "www.cekas.eu", "<script src='https://www.cekas.eu/" },
{ "www.cekas.eu", "https://www.cekas.eu/wp-content/plugins/elementor/assets/js/preloaded-modules" },
};
for(int nd = 0; nd < 1; nd++)
for(int i = 0; i < __countof(x); i++) {

View file

@ -93,7 +93,7 @@ struct UsesDisplay : Display {
};
int FlagFilter(int c) {
return IsAlNum(c) || c == '_' || c == ' ' ? ToUpper(c) : 0;
return IsAlNum(c) || c == '_' || c == ' ' ? ToUpper(c) : strchr(":;,/", c) ? ' ' : 0;
}
int FlagFilterM(int c) {