You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Hi Everyone!

I need to display a file upload section only if the deadline has not been reached.

Is something like this possible in Beanshell Permission and how would I do it?:

if(today > deadline)

Unknown macro: {      return false; }

else

Unknown macro: {      return true; }

Thanks!

if(today > deadline){
     return false;
}else{
     return true;
}

  • No labels