Fix doubled name in link

This commit is contained in:
nathangray 2017-07-26 16:26:56 -06:00
parent f17a272b6d
commit 1159df66cf

View File

@ -83,6 +83,11 @@ var et2_vfs = (function(){ "use strict"; return et2_valueWidget.extend([et2_IDet
}
else
{
if(_value.path.indexOf(_value.name) >= 0)
{
// Remove name from end, so we can add it again later
path = sub_path;
}
var path_offset = 0;
var path_parts = [_value.name];
}