Merge 2016.3 Gold D changes

svn path=/Website/trunk/; revision=33357
This commit is contained in:
Jos Groot Lipman
2017-03-30 21:40:17 +00:00
19 changed files with 780 additions and 254 deletions

View File

@@ -105,9 +105,9 @@ settings =
// paden ten opzichte van de root toe
if (n == "flexfilespath" || n == "fg_dwf_path")
{
if (v.substr(0,1) == '*') // *_DATA wordt /branch20163_DATA of FPlace5i_DATA
if (v.substr(0,1) == '*') // *_DATA wordt branch20163_DATA of FPlace5i_DATA
{
v = Server.MapPath(rooturl) + v.substr(1) + "/" + customerId;
v = Server.MapPath(rooturl || "/") + v.substr(1) + "/" + customerId;
var fso = Server.CreateObject("Scripting.FileSystemObject");
v = fso.GetAbsolutePathName(v); // Technisch niet nodig maar toch '..' wegwerken
__Log("Path {0} is set to {1}".format(n, v));