I'm used return false; in 1.3 and view rendered. now I'm using it in 2.0 but view would not render. I also used return; and have same result.
return false;
return;
I need it, please...
A simple return will work for you, it's the same as return null which is different than return false
return
return null
return false
return; and return null; was ok. thanks.
return null;