diff --git a/trunk/report_templates/NTUSER_RecentDocs.qs b/trunk/report_templates/NTUSER_RecentDocs.qs index 02c8223..c4359a5 100644 --- a/trunk/report_templates/NTUSER_RecentDocs.qs +++ b/trunk/report_templates/NTUSER_RecentDocs.qs @@ -1,37 +1,36 @@ function IsValid(val) { if(typeof val !== 'undefined') return true; else return false; } println(""); println("
"); println("
Document | Last modified |
Document | |
",RegistryKeyValueToVariant(entry.value,"utf16",0)," | ",mod_time," |
",RegistryKeyValueToVariant(entry.value,"utf16",0)," |
"); println(" This registry hive does not contain a list of recent documents!"); println("
"); } println(""); diff --git a/trunk/report_templates/NTUSER_TypedUrls.qs b/trunk/report_templates/NTUSER_TypedUrls.qs index ec0d2b3..a94144d 100644 --- a/trunk/report_templates/NTUSER_TypedUrls.qs +++ b/trunk/report_templates/NTUSER_TypedUrls.qs @@ -1,32 +1,31 @@ function IsValid(val) { if(typeof val !== 'undefined') return true; else return false; } println(""); println(""); println("
Url | Last modified |
Url | ",RegistryKeyValueToString(val.value,val.type)," | ",mod_time," | "); + println("
",RegistryKeyValueToString(val.value,val.type)," |
"); println(" This registry hive does not contain a list of typed urls!"); println("
"); } println("");