summaryrefslogtreecommitdiff
path: root/includes/node.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-07-12 20:36:40 +0000
committerDries Buytaert <dries@buytaert.net>2001-07-12 20:36:40 +0000
commite81c014937a5a4c1628ae52efe00a04ae24b2257 (patch)
tree72f6f7295e676059177219d9db6b3a18ae7f5e7b /includes/node.inc
parent63814764da863c3d043fdac21a01ca3c83bf7b7d (diff)
downloadbrdo-e81c014937a5a4c1628ae52efe00a04ae24b2257.tar.gz
brdo-e81c014937a5a4c1628ae52efe00a04ae24b2257.tar.bz2
- blog.module:
+ fixed visual glitch with 'read more' link (blog comments) + made it possible to delete your last blog item + fixed timestamp bug when previewing a new blog + fixed potential problem with blog_save() + fixed a few HTML/XHTML tinkos. - statistics.module: + "yoursite.com" should no longer show up under "external referrers" + fixed "Referers of the last 31 years 37 weeks 1 hour 46 min 40 sec" bug + xhtml-ified - node.inc: + fixed watchdog message - import.module: + small block improvement
Diffstat (limited to 'includes/node.inc')
-rw-r--r--includes/node.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/node.inc b/includes/node.inc
index b882d0740..1653415d1 100644
--- a/includes/node.inc
+++ b/includes/node.inc
@@ -51,7 +51,7 @@ function node_del($conditions) {
db_query("DELETE FROM node WHERE nid = '$node->nid'");
db_query("DELETE FROM $node->type WHERE lid = '$node->lid' AND nid = '$node->nid'");
db_query("DELETE FROM comments WHERE lid = '$node->nid'");
- watchdog("message", "node: deleted '$node->title'");
+ watchdog("special", "node: deleted '$node->title'");
return $node;
}
}