Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Srna <tomas@srna.sk>2014-10-29 12:52:54 +0300
committerTomas Srna <tomas@srna.sk>2014-10-29 12:52:54 +0300
commit733012cb65e43e41aa3b553c7fd02079cbf9eff4 (patch)
treee0067aaa72cdc6634cec60aa96376ed3c2515515 /app/uploaders
parent1072c95180aa31b999088fec4d14ce6765041a15 (diff)
Removed + '' +
Diffstat (limited to 'app/uploaders')
-rw-r--r--app/uploaders/attachment_uploader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/uploaders/attachment_uploader.rb b/app/uploaders/attachment_uploader.rb
index 24fc294909e..29a55b36ca5 100644
--- a/app/uploaders/attachment_uploader.rb
+++ b/app/uploaders/attachment_uploader.rb
@@ -27,7 +27,7 @@ class AttachmentUploader < CarrierWave::Uploader::Base
end
def url
- Gitlab.config.gitlab.relative_url_root + '' + super unless super.nil?
+ Gitlab.config.gitlab.relative_url_root + super unless super.nil?
end
def file_storage?