Verbs get mistaken for close verbs in webclient
Numbered Steps to Reproduce Problem:
Follow the code snippet
Code Snippet (if applicable) to Reproduce Problem:
mob/verb/New_Test()
src << "New"
mob/verb/Load_Test()
src << "Load"
mob/verb/Test()
src << "Test"
Expected Results:
Test runs "Test".
Actual Results:
Clicking Test actually runs New_Test().
Workarounds:
Rename the verb to something not close to the others.