summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--database/database.mysql5
-rw-r--r--modules/comment.module2
-rw-r--r--modules/comment/comment.module2
-rw-r--r--update.php4
4 files changed, 2 insertions, 11 deletions
diff --git a/database/database.mysql b/database/database.mysql
index a0757cd9e..e7b25dbbc 100644
--- a/database/database.mysql
+++ b/database/database.mysql
@@ -550,17 +550,13 @@ INSERT INTO variable SET name='update_start', value='2002-05-15';
INSERT INTO system VALUES ('archive.module','archive','module','',1);
INSERT INTO system VALUES ('block.module','block','module','',1);
INSERT INTO system VALUES ('blog.module','blog','module','',1);
-INSERT INTO system VALUES ('bloggerapi.module','bloggerapi','module','',1);
INSERT INTO system VALUES ('book.module','book','module','',1);
INSERT INTO system VALUES ('cloud.module','cloud','module','',1);
INSERT INTO system VALUES ('comment.module','comment','module','',1);
INSERT INTO system VALUES ('forum.module','forum','module','',1);
INSERT INTO system VALUES ('help.module','help','module','',1);
INSERT INTO system VALUES ('import.module','import','module','',1);
-INSERT INTO system VALUES ('jabber.module','jabber','module','',1);
-INSERT INTO system VALUES ('locale.module','locale','module','',1);
INSERT INTO system VALUES ('node.module','node','module','',1);
-INSERT INTO system VALUES ('notify.module','notify','module','',1);
INSERT INTO system VALUES ('page.module','page','module','',1);
INSERT INTO system VALUES ('poll.module','poll','module','',1);
INSERT INTO system VALUES ('queue.module','queue','module','',1);
@@ -574,7 +570,6 @@ INSERT INTO system VALUES ('themes/goofy/goofy.theme','goofy','theme','Internete
INSERT INTO system VALUES ('themes/marvin/marvin.theme','marvin','theme','Internet explorer, Netscape, Opera',1);
INSERT INTO system VALUES ('themes/unconed/unconed.theme','unconed','theme','Internet explorer, Netscape, Opera',1);
INSERT INTO system VALUES ('tracker.module','tracker','module','',1);
-INSERT INTO system VALUES ('weblogs.module','weblogs','module','',1);
REPLACE variable SET value = 'marvin', name = 'theme_default';
REPLACE blocks SET name = 'User information', module = 'user', delta = '0', status = '1';
REPLACE blocks SET name = 'Log in', module = 'user', delta = '1', status = '1';
diff --git a/modules/comment.module b/modules/comment.module
index 41eb876b2..3dc248914 100644
--- a/modules/comment.module
+++ b/modules/comment.module
@@ -423,7 +423,7 @@ function comment_view($comment, $folded = 0) {
$theme->comment($comment, $folded);
}
else {
- print l(check_output($comment->subject), array("id" => $comment->nid, "cid" => $comment->cid), "node", $comment->cid) ." ". t("by") ." ". format_name($comment) ."</small><p />";
+ print "<li>". l(check_output($comment->subject), array("id" => $comment->nid, "cid" => $comment->cid), "node", $comment->cid, array("title" => t("Read comment."))) ." ". t("by") ." ". format_name($comment) ."</li>\n";
}
}
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 41eb876b2..3dc248914 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -423,7 +423,7 @@ function comment_view($comment, $folded = 0) {
$theme->comment($comment, $folded);
}
else {
- print l(check_output($comment->subject), array("id" => $comment->nid, "cid" => $comment->cid), "node", $comment->cid) ." ". t("by") ." ". format_name($comment) ."</small><p />";
+ print "<li>". l(check_output($comment->subject), array("id" => $comment->nid, "cid" => $comment->cid), "node", $comment->cid, array("title" => t("Read comment."))) ." ". t("by") ." ". format_name($comment) ."</li>\n";
}
}
diff --git a/update.php b/update.php
index 756e99085..a62ab8f40 100644
--- a/update.php
+++ b/update.php
@@ -480,17 +480,14 @@ function update_upgrade3() {
update_sql("INSERT INTO system VALUES ('archive.module','archive','module','',1);");
update_sql("INSERT INTO system VALUES ('block.module','block','module','',1);");
update_sql("INSERT INTO system VALUES ('blog.module','blog','module','',1);");
- update_sql("INSERT INTO system VALUES ('bloggerapi.module','bloggerapi','module','',1);");
update_sql("INSERT INTO system VALUES ('book.module','book','module','',1);");
update_sql("INSERT INTO system VALUES ('cloud.module','cloud','module','',1);");
update_sql("INSERT INTO system VALUES ('comment.module','comment','module','',1);");
update_sql("INSERT INTO system VALUES ('forum.module','forum','module','',1);");
update_sql("INSERT INTO system VALUES ('help.module','help','module','',1);");
update_sql("INSERT INTO system VALUES ('import.module','import','module','',1);");
- update_sql("INSERT INTO system VALUES ('jabber.module','jabber','module','',1);");
update_sql("INSERT INTO system VALUES ('locale.module','locale','module','',1);");
update_sql("INSERT INTO system VALUES ('node.module','node','module','',1);");
- update_sql("INSERT INTO system VALUES ('notify.module','notify','module','',1);");
update_sql("INSERT INTO system VALUES ('page.module','page','module','',1);");
update_sql("INSERT INTO system VALUES ('poll.module','poll','module','',1);");
update_sql("INSERT INTO system VALUES ('queue.module','queue','module','',1);");
@@ -504,7 +501,6 @@ function update_upgrade3() {
update_sql("INSERT INTO system VALUES ('themes/marvin/marvin.theme','marvin','theme','Internet explorer, Netscape, Opera',1);");
update_sql("INSERT INTO system VALUES ('themes/unconed/unconed.theme','unconed','theme','Internet explorer, Netscape, Opera',1);");
update_sql("INSERT INTO system VALUES ('tracker.module','tracker','module','',1);");
- update_sql("INSERT INTO system VALUES ('weblogs.module','weblogs','module','',1);");
update_sql("REPLACE variable SET value = 'marvin', name = 'theme_default';");
update_sql("REPLACE blocks SET name = 'User information', module = 'user', delta = '0', status = '1';");
update_sql("REPLACE blocks SET name = 'Log in', module = 'user', delta = '1', status = '1';");