SelectRecentlyModified
Can anyone assist me with this issue. Am running DW 2021 and the function to "select recently modified" pages has stopped working within the past couple of days. No problems previously. It presents an error message:
While executing onClick in SelectRecentlyModified.html, the following JavaScript error ocurred:
At line 370 of file c:\Program Files\Adobe\Adobe Dreamweaver 2021\Configuration\Menus\MM\SelectRecentlyModified.js: DWfile.getAttributes(listItem) has no properties
I can put individual files without any problems, but the program will no longer collect a batch of files modified within any number of past days. I have tried all different settings including specifying a from/to date set
I get exactly the same issue when running DW 20.2
The code at line 370 is as follows:
//if (isFolder(listItem))
if (DWfile.getAttributes(listItem).indexOf('D') != (-1))
{
// listItem is a folder
if (!checkArray(ignoreFolders,tmpListItem))
searchFolder(listItem);
}
else
{
// listItem is a file
searchFile(listItem);
}
}
}
I have no idea what that means. But what is IndexOf D? Is that the issue? What does D relate to?
PLEASE HELP!!!
