Commit 7ceb2f46 authored by claes's avatar claes

Replace of added

parent e55748d1
......@@ -23,7 +23,11 @@ public class GeDynCommand extends GeDynElem {
if ( (dyn.actionType & GeDyn.mActionType_Confirm) != 0)
break;
Jop.executeCommand( dyn.session, command);
if ( dyn.instance == null)
Jop.executeCommand( dyn.session, command);
else
Jop.executeCommand( dyn.session, RtUtilities.strReplace(command, "$object", dyn.instance));
break;
}
}
......
......@@ -23,7 +23,11 @@ public class GeDynCommand extends GeDynElem {
if ( (dyn.actionType & GeDyn.mActionType_Confirm) != 0)
break;
Jop.executeCommand( dyn.session, command);
if ( dyn.instance == null)
Jop.executeCommand( dyn.session, command);
else
Jop.executeCommand( dyn.session, RtUtilities.strReplace(command, "$object", dyn.instance));
break;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment