Hi,No, you would need to add the full code. I would wrap it in a
try-catch, to avoid errors (even so the code are running
server-side)try{ var mboxParam = page.param('referidos').toLowerCase()
|| ""; if (mboxParam != "") { return mboxParam; } }}catch(e){ // Error
handling... }Then the profile parameter are only set, if the querystring
referidos exists, and it get's the value of the query string (value =
's', in your example URL)/Løjmann