mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-02 22:00:34 +01:00
relative path upload fixes #2403
This commit is contained in:
2
app.js
2
app.js
@@ -90,7 +90,7 @@ function loadConfig() {
|
||||
nconf.defaults({
|
||||
base_dir: __dirname,
|
||||
themes_path: path.join(__dirname, 'node_modules'),
|
||||
upload_url: '/uploads/',
|
||||
upload_url: nconf.get('relative_path') + '/uploads/',
|
||||
views_dir: path.join(__dirname, 'public/templates')
|
||||
});
|
||||
|
||||
|
||||
@@ -213,7 +213,7 @@ define('composer/uploads', ['composer/preview'], function(preview) {
|
||||
text = textarea.val(),
|
||||
uploadForm = postContainer.find('#fileForm');
|
||||
|
||||
uploadForm.attr('action', params.route);
|
||||
uploadForm.attr('action', config.relative_path + params.route);
|
||||
|
||||
for(var i = 0; i < files.length; ++i) {
|
||||
var isImage = files[i].type.match(/image./);
|
||||
@@ -288,7 +288,7 @@ define('composer/uploads', ['composer/preview'], function(preview) {
|
||||
spinner = postContainer.find('.topic-thumb-spinner'),
|
||||
thumbForm = postContainer.find('#thumbForm');
|
||||
|
||||
thumbForm.attr('action', params.route);
|
||||
thumbForm.attr('action', config.relative_path + params.route);
|
||||
|
||||
thumbForm.off('submit').submit(function() {
|
||||
var csrf = $('#csrf').attr('data-csrf');
|
||||
|
||||
@@ -174,7 +174,7 @@ var async = require('async'),
|
||||
}
|
||||
|
||||
if (category.image) {
|
||||
category.backgroundImage = category.image ? nconf.get('relative_path') + category.image : '';
|
||||
category.backgroundImage = category.image;
|
||||
}
|
||||
|
||||
callback(null, category);
|
||||
|
||||
Reference in New Issue
Block a user