Don't rtrim iframe url
This commit is contained in:
parent
7c51fd2f97
commit
f926ead629
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ class SaveClientPortalSettings extends Request
|
|||
} else {
|
||||
$iframeURL = substr(strtolower($input['iframe_url']), 0, MAX_IFRAME_URL_LENGTH);
|
||||
$iframeURL = preg_replace('/[^a-zA-Z0-9_\-\:\/\.]/', '', $iframeURL);
|
||||
$input['iframe_url'] = rtrim($iframeURL, '/');
|
||||
$input['iframe_url'] = $iframeURL;
|
||||
$input['subdomain'] = null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue