summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index ba241b8af..099ece8e3 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -130,7 +130,7 @@ function blog_feed_user($uid = 0) {
$account = $user;
}
- $result = db_query("SELECT n.nid, n.title, n.teaser, n.created, u.name, u.uid FROM node n LEFT JOIN users u ON n.uid = u.uid WHERE n.type = 'blog' AND u.uid = '$uid' AND n.status = 1 ORDER BY n.nid DESC LIMIT 15");
+ $result = db_query("SELECT n.nid, n.title, n.teaser, n.created, u.name, u.uid FROM node n LEFT JOIN users u ON n.uid = u.uid WHERE n.type = 'blog' AND u.uid = '%d' AND n.status = 1 ORDER BY n.nid DESC LIMIT 15", $uid);
$channel["title"] = $account->name. "'s blog";
$channel["link"] = path_uri() . url("blog/view/$uid");
$channel["description"] = $term->description;
@@ -296,4 +296,4 @@ function blog_block($op = "list", $delta = 0) {
}
}
-?> \ No newline at end of file
+?>