Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
0cfa8aaf
Commit
0cfa8aaf
authored
Aug 23, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7518 from jvanbaarsen/snippet-charset-fix
Set charset encoding to UTF-8 for snippets
parents
eddfdc9e
1b148645
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
app/controllers/projects/snippets_controller.rb
app/controllers/projects/snippets_controller.rb
+1
-1
app/controllers/snippets_controller.rb
app/controllers/snippets_controller.rb
+1
-1
No files found.
app/controllers/projects/snippets_controller.rb
View file @
0cfa8aaf
...
...
@@ -63,7 +63,7 @@ class Projects::SnippetsController < Projects::ApplicationController
def
raw
send_data
(
@snippet
.
content
,
type:
"text/plain"
,
type:
'text/plain; charset=utf-8'
,
disposition:
'inline'
,
filename:
@snippet
.
file_name
)
...
...
app/controllers/snippets_controller.rb
View file @
0cfa8aaf
...
...
@@ -86,7 +86,7 @@ class SnippetsController < ApplicationController
def
raw
send_data
(
@snippet
.
content
,
type:
"text/plain"
,
type:
'text/plain; charset=utf-8'
,
disposition:
'inline'
,
filename:
@snippet
.
file_name
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment