You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Run officedocs.pl on a hive from a computer with Office (you should never
had use Excel)
2. Read the result.
What is the expected output? What do you see instead?
The expected outuput, where XX is the Office Version:
Software\Microsoft\Office\XX\Excel\Recent Files has not value
or
Software\Microsoft\Office\XX\Excel\Recent Files not found
But we see:
Software\Microsoft\Office\XXExcel\Recent Files has not value
or
Software\Microsoft\Office\XXExcel\Recent Files not found
What version of the product are you using? On what operating system?
rr 2.8 - 20140414
officedocs.pl v. 20080324
Windows 7 - 64 bits
Please provide any additional information below.
A "\" is missing between version and "Excel", it cames from lines 100 & 104.
100: ::rptMsg($key_path.$excel." has no values.");
104: ::rptMsg($key_path.$excel." not found.");
Correction:
100: ::rptMsg($key_path."\\".$excel." has no values.");
104: ::rptMsg($key_path."\\".$excel." not found.");
Original issue reported on code.google.com by [email protected] on 9 Jun 2014 at 5:51
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 9 Jun 2014 at 5:51The text was updated successfully, but these errors were encountered: