* Search keep in session should preserve and always set options as selection till it is ticked.
* Reset Whole View to page view, should still set the search option till it is ticked.
* Unticking Keep in Session should be honored on next browsing.
+ * Keyword should be stripped from, punctuations.
* Global view overrides. These get generated in the db if set on logon. And used instead of the normal view.
* Overrides must always show todays log entries, regardless of criteria.
* VIEW_OVERRIDE_SYSLOGS={0/1}, anon if set 1-true, will hide older than today system logs. Doesn't affect category and keywords searches/views.
}
elsif ( $rs_keys && $rs_keys ne '*' ) {
- my @keywords = split / /, $rs_keys;
+ my @keywords = split /\W/, $rs_keys;
if ($prm_vc && $prm_vc != $prm_xc) {
}
if (@keywords) {
- foreach (@keywords) {
+ foreach (@keywords) { next if $_ eq "";
#was previous an OR?, replace with an AND we filter further by keywords.
$stmS =~ s/\sOR$/ and/gi;
if(Settings::isProgressDB()){$stmS .= " LOWER(LOG) ~ '" . lc $_ . "'"}
+body{
+ font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Bookman,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;
+ font-size: 14px;
+}
p {
- font-family: Bookman;
+
margin-left: 70px;
font-weight: bold;
}
table,
th,
td {
- font-family: Bookman;
+
border-collapse: collapse;
padding: 5px;
margin: auto;