- Issue created by @trickfun
- ๐ฎ๐นItaly trickfun
If i click on "create new branch" i go to 404: Page not found
In ajaxFacetBlockView function of FacetBlockAjaxController file, remove space at the end of $path variable.
After line 122.
Something like this$path = rtrim($path, '%20');
Thank you
rafal.tokarski โ made their first commit to this issueโs fork.
- Merge request !310Issue #3520453 by trickfun: Add trim to processed string to avoid creating... โ (Open) created by Unnamed author
I've added this line to take care of ASCII control characters.
$processed = is_string($processed) ? trim($processed) : $processed;