mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 14:05:46 +01:00
closes #3754
This commit is contained in:
@@ -381,6 +381,12 @@
|
||||
};
|
||||
}
|
||||
|
||||
if (typeof String.prototype.rtrim != 'function') {
|
||||
String.prototype.rtrim = function() {
|
||||
return this.replace(/\s+$/g, '');
|
||||
};
|
||||
}
|
||||
|
||||
if ('undefined' !== typeof window) {
|
||||
window.utils = module.exports;
|
||||
}
|
||||
|
||||
@@ -101,6 +101,9 @@ module.exports = function(Topics) {
|
||||
check(data.tags, meta.config.minimumTagsPerTopic, meta.config.maximumTagsPerTopic, 'not-enough-tags', 'too-many-tags', next);
|
||||
},
|
||||
function(next) {
|
||||
if (data.content) {
|
||||
data.content = data.content.rtrim();
|
||||
}
|
||||
check(data.content, meta.config.minimumPostLength, meta.config.maximumPostLength, 'content-too-short', 'content-too-long', next);
|
||||
},
|
||||
function(next) {
|
||||
@@ -228,7 +231,7 @@ module.exports = function(Topics) {
|
||||
function(filteredData, next) {
|
||||
content = filteredData.content || data.content;
|
||||
if (content) {
|
||||
content = content.trim();
|
||||
content = content.rtrim();
|
||||
}
|
||||
|
||||
check(content, meta.config.minimumPostLength, meta.config.maximumPostLength, 'content-too-short', 'content-too-long', next);
|
||||
|
||||
Reference in New Issue
Block a user