more fixes

v1.18.x
Baris Usakli 12 years ago
parent a76d6c1f9a
commit 82319a020f

@ -83,7 +83,7 @@ marked.setOptions({
}); });
} }
Topics.getTopicById = function(tid, current_user, callback) { Topics.getTopicWithPosts = function(tid, current_user, callback) {
Topics.markAsRead(tid, current_user); Topics.markAsRead(tid, current_user);

@ -134,7 +134,7 @@ var express = require('express'),
var topic_url = tid + (req.params.slug ? '/' + req.params.slug : ''); var topic_url = tid + (req.params.slug ? '/' + req.params.slug : '');
topics.getTopicById(tid, ((req.user) ? req.user.uid : 0), function(topic) { topics.getTopicWithPosts(tid, ((req.user) ? req.user.uid : 0), function(topic) {
res.send( res.send(
app.build_header(res) + app.build_header(res) +
'\n\t<noscript>\n' + templates['noscript/header'] + templates['noscript/topic'].parse(topic) + '\n\t</noscript>' + '\n\t<noscript>\n' + templates['noscript/header'] + templates['noscript/topic'].parse(topic) + '\n\t</noscript>' +
@ -241,7 +241,7 @@ var express = require('express'),
res.json(data); res.json(data);
break; break;
case 'topic' : case 'topic' :
topics.getTopicById(req.params.id, uid, function(data) { topics.getTopicWithPosts(req.params.id, uid, function(data) {
res.json(data); res.json(data);
}); });
break; break;
@ -314,9 +314,6 @@ var express = require('express'),
app.all('/test', function(req, res) { app.all('/test', function(req, res) {
/*topics.getTopicById(24, 1, function(data) {
res.send(data);
});*/
categories.getCategoryById(1,1, function(data) { categories.getCategoryById(1,1, function(data) {
res.send(data); res.send(data);
},1); },1);

Loading…
Cancel
Save