Commit af846297 authored by Stan Hu's avatar Stan Hu

Fix Error 500 when creating Wiki pages with hyphens or spaces

Closes gitlab-com/support-forum#874
parent fb362795
...@@ -10,6 +10,9 @@ v 8.11.0 (unreleased) ...@@ -10,6 +10,9 @@ v 8.11.0 (unreleased)
v 8.10.1 (unreleased) v 8.10.1 (unreleased)
- Fix bug where replies to commit notes displayed in the MR discussion tab wouldn't show up on the commit page - Fix bug where replies to commit notes displayed in the MR discussion tab wouldn't show up on the commit page
v 8.10.1 (unreleased)
- Fix Error 500 when creating Wiki pages with hyphens or spaces
v 8.10.0 v 8.10.0
- Fix profile activity heatmap to show correct day name (eanplatter) - Fix profile activity heatmap to show correct day name (eanplatter)
- Speed up ExternalWikiHelper#get_project_wiki_path - Speed up ExternalWikiHelper#get_project_wiki_path
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
- content_for :scripts_body_top do - content_for :scripts_body_top do
- project = @target_project || @project - project = @target_project || @project
- if @project_wiki && @page - if @project_wiki && @page && @page.slug.present?
- markdown_preview_path = namespace_project_wiki_markdown_preview_path(project.namespace, project, @page.title) - markdown_preview_path = namespace_project_wiki_markdown_preview_path(project.namespace, project, @page.slug)
- else - else
- markdown_preview_path = markdown_preview_namespace_project_path(project.namespace, project) - markdown_preview_path = markdown_preview_namespace_project_path(project.namespace, project)
- if current_user - if current_user
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment