Quote from EFS knowledge base:
Can you clarify what "script operation will abort" means?
I have recently come across a situation main() continues to be called and processing (other than the return of values) continues in the main() function.
//when this script is loaded, addEntitlement() will be called and the current user's eSignal
//program username will be checked against a list of authorized user names. If this user is
//not in that list, script operation will abort and an error message will be displayed
addEntitlement( "www.myWebSite.com/AuthorizedUsers.txt", "Sorry. Not authorized.", "www.MyWebSite.com" );
//program username will be checked against a list of authorized user names. If this user is
//not in that list, script operation will abort and an error message will be displayed
addEntitlement( "www.myWebSite.com/AuthorizedUsers.txt", "Sorry. Not authorized.", "www.MyWebSite.com" );
I have recently come across a situation main() continues to be called and processing (other than the return of values) continues in the main() function.
Comment