Hi there,
we just noticed that the plugin fires the events only once, like we had before.
I looked into the code and found the solution:
Change line 409 from:
'=' is an assignment in C# whereas '==' would be the equality operator. I guess it's just a typo on your end but I can only recommend that you use the "!" to check for false booleans.
HTH,
Higgins
we just noticed that the plugin fires the events only once, like we had before.
I looked into the code and found the solution:
Change line 409 from:
if (runonce=false)to:
if (!runonce)'=' is an assignment in C# whereas '==' would be the equality operator. I guess it's just a typo on your end but I can only recommend that you use the "!" to check for false booleans.
HTH,
Higgins