summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-07-12 06:16:11 +0000
committerDries Buytaert <dries@buytaert.net>2001-07-12 06:16:11 +0000
commita9bdf3775b9b89a573c81caa57456e9cd3b4fb0d (patch)
tree0fdedbe26d980263d8c887eef5336f69f1d395c7 /modules/blog
parentd6d60de3ccac7b26ed3a14498279c8f16cdcefe7 (diff)
downloadbrdo-a9bdf3775b9b89a573c81caa57456e9cd3b4fb0d.tar.gz
brdo-a9bdf3775b9b89a573c81caa57456e9cd3b4fb0d.tar.bz2
- blog.module:
+ fixed bug reported by killes.
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 7a6f577ce..fd390ae0e 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -62,7 +62,7 @@ function blog_page_user($userid = 0, $date = 0) {
** Display the last blogs for this user:
*/
- $result = db_query("SELECT n.nid, n.timestamp FROM node n LEFT JOIN users u ON u.id = n.author WHERE u.userid = '". check_input($userid) ."' AND n.timestamp > ". (time() - 2592000) ." LIMIT 15");
+ $result = db_query("SELECT n.nid, n.timestamp FROM node n LEFT JOIN users u ON u.id = n.author WHERE u.userid = '". check_input($userid) ."' AND n.timestamp > ". (time() - 2592000) ." ORDER BY n.timestamp DESC LIMIT 15");
while ($blog = db_fetch_object($result)) {
if ($date != date("ndy", $blog->timestamp)) {
$date = date("ndy", $blog->timestamp);
@@ -135,9 +135,9 @@ function blog_view($node) {
}
function blog_form($edit = array()) {
- global $REQUEST_URI, $id, $type, $user, $theme;
+ global $REQUEST_URI, $id, $mod, $type, $user, $theme;
- if ($edit[type] == "blog") {
+ if ($mod == "node" || $edit[type] == "blog") {
}
else if ($type == "blog") {
$item = node_get_object(array(type => "blog", nid => $id));