Dries Buytaert
e184dfed80
- Fixed problem with comment deleting. Patch by UnConeD.
2004-10-18 20:13:56 +00:00
The Great Git Migration
4c5831a4b1
This commit was manufactured as part of Drupal's Great Git Migration to
...
create branch 'DRUPAL-4-5'.
Sprout from master 2004-10-18 18:40:53 UTC Dries Buytaert <dries@buytaert.net> '- Fixed parentheses.'
Delete:
modules/aggregator/aggregator.module
modules/archive/archive.module
modules/block/block.module
modules/blog/blog.module
modules/blogapi/blogapi.module
modules/book/book.module
modules/comment/comment.module
modules/drupal/drupal.module
modules/filter/filter.module
modules/forum/forum.module
modules/help/help.module
modules/legacy/legacy.module
modules/locale/locale.module
modules/menu/menu.module
modules/node/node.module
modules/page/page.module
modules/path/path.module
modules/ping/ping.module
modules/poll/poll.module
modules/profile/profile.module
modules/search/search.module
modules/statistics/statistics.module
modules/story/story.module
modules/system/system.module
modules/taxonomy/taxonomy.module
modules/throttle/throttle.module
modules/tracker/tracker.module
modules/upload/upload.module
modules/user/user.module
modules/watchdog/watchdog.module
2004-10-18 18:40:54 +00:00
Dries Buytaert
25bbc0d4c4
- Fixed parentheses.
2004-10-18 18:40:53 +00:00
Dries Buytaert
07cdcb439b
- Patch by James: made the blogapi module work again.
2004-10-18 18:29:15 +00:00
Dries Buytaert
1362571d09
- Patch #11510 by Adrian: turned a non-ANSI SQL query into ANSI SQL so it works with PostgreSQL.
2004-10-18 17:46:19 +00:00
Dries Buytaert
c9d1894911
- Patch #11682 : changed FILTER_DEFAULT_FORMAT to FILTER_FORMAT_DEFAULT to make the Blog API work.
2004-10-18 08:00:41 +00:00
Dries Buytaert
a423eefe95
- Patch #11670 by TDobes: comment.module did not properly set a breadcrumb for creating/previewing new comments. The node on which your commenting and its location within the menu is not displayed. Instead, there is only a "Home" link. This is especially apparent when the "add new comment" form is set up to display on a separate page.
2004-10-17 19:09:09 +00:00
Dries Buytaert
869a91b72e
- Patch #11505 by Steven: 'my account' information is not saved.
...
+ Drupal 4.4 stored profile data in the serialized user->data column. Drupal 4.5 stores profile data in tables (but user->data is still available and used for other stuff, like locale or themes). The update from 4.4 to 4.5 didn't remove the old data from the user->data column properly, because there is no mechanism in user_save to do so (it did try to unset the fields, but this has no effect).
+ On registration, hook_user('insert') is invoked after saving the data column. This means that any module-specific data is put into the data field. We cannot move hook_user('insert') higher up, because before that point, we do not have a complete $user object yet.
2004-10-16 16:59:59 +00:00
Dries Buytaert
5a2e0d0377
- Patch #11642 by Steven: when editing a user as an admin, you can choose the user's roles through form checkboxes. If the form validation fails and the form is redisplayed, the roles are lost. This is because the format for $user->roles is different from what form_checkboxes uses.
2004-10-16 16:48:04 +00:00
Dries Buytaert
2c45ab85fb
- Fixed bug #9948 : added some checks to system_setting_save() to avoid PHP warnings/errors.
2004-10-16 07:35:29 +00:00
Dries Buytaert
7ebd772f41
- Patch #10664 by TDobes: fixed collapsed comments + updated the code comments.
2004-10-16 07:22:26 +00:00
Steven Wittens
a35ff36673
search: Removing iso-8859-1 characters from update_index() and adding the same stripping to do_search().
...
This fixes the embarrasing bug of not being able to search for "4.5.0" because it is indexed as "450".
2004-10-15 22:01:41 +00:00
Dries Buytaert
7cf0e9af33
- Patch #9252 by TDobes: admins should be able to edit anonymous commenters' names.
2004-10-15 16:57:20 +00:00
Dries Buytaert
49dcf84fdf
- Patch #11605 by TDobes: if a user happens to have uid=0 defined in their database, the name assigned to that user will always override any name submitted by an anonymous commenter. Checking against $user->uid instead of $user->registered_name fixes this problem.
2004-10-15 11:13:11 +00:00
Dries Buytaert
1f1a772a11
- Mofified patch #8862 by puregin: improved book module documentation.
2004-10-15 10:56:23 +00:00
Dries Buytaert
dfb3c3aec4
- Patch #11577 by drumm: changed t('ago') -> t('%time ago', ...) to make it
...
translatable in languages such as Spanish.
2004-10-15 05:10:35 +00:00
Dries Buytaert
6a8e394301
- Fixed bug #11312 : menu caching to aggresively. I did not apply the proposed
...
patch but moved the menu-logic to the $may_cache clause and added some checks
to avoid SQL overhead. I think this is the most performant solution.
2004-10-14 21:45:37 +00:00
Dries Buytaert
4a0e047469
- Patch #10869 by JonBob: the menu.module forget the parent item on form error.
2004-10-14 21:35:12 +00:00
Dries Buytaert
df4ec83120
- Patch #10677 by drumm: removed dead code. Leftover.
2004-10-14 21:27:33 +00:00
Steven Wittens
9e4399aae8
#10677 : Confirmation when deleting a block + unifying confirmation screens.
2004-10-14 15:28:24 +00:00
Steven Wittens
63061bd745
fixing typoes.
2004-10-14 05:34:12 +00:00
Steven Wittens
583e63c136
Theme system bug: only show search box if search.module is enabled.
2004-10-14 02:38:33 +00:00
Steven Wittens
aaa214e4a8
#6595 : Unifying profile.module textbox widths with user.module.
2004-10-13 20:35:46 +00:00
Steven Wittens
b5806c7595
#11503 : Fixing bad t()
2004-10-13 20:29:12 +00:00
Dries Buytaert
551782a5b2
- Modified patch #10424 by Jeremy: deleting terms can orphan child terms in the database.
...
I rewrote this patch for simplicity.
2004-10-13 18:38:33 +00:00
Dries Buytaert
4bc031b13e
- Patch #11530 by Frodo: fixed long filter tips.
2004-10-13 17:03:06 +00:00
Dries Buytaert
2510f322a1
- Modified patch #10613 by killes: generate a 'page not found'-page when a requested node does not exist. I modified the patch to avoid duplicate 'not found'-checking in the second bulk.
2004-10-12 20:01:25 +00:00
Dries Buytaert
8ce9d2aca4
- Patch #11298 by nato: the function _forum_topics_read was not returning only nodes of type 'forum' resulting in the forum overview listing counting all node types as topics; attached patch modifies queries to return counts of only 'forum' type nodes.
2004-10-12 19:44:16 +00:00
Steven Wittens
a185443ed3
#11503 : consistency improvements by Stefan
2004-10-12 16:16:22 +00:00
Steven Wittens
2c4a82bda2
#11503 : (more) missing t()
2004-10-12 16:10:54 +00:00
Steven Wittens
7a536c06d4
#11503 : missing t() in throttle and filter modules.
2004-10-12 15:56:02 +00:00
Dries Buytaert
63e9b06e75
- Bugfix: provide an absolute URL to the 'ping servers'.
2004-10-10 19:43:23 +00:00
Dries Buytaert
abcfd21927
- Code improvement: removed some redundant code from the node module.
2004-10-10 11:17:24 +00:00
Dries Buytaert
5407b630e3
- Orphaned the node_link() hook as per #9769 .
2004-10-10 11:12:57 +00:00
Dries Buytaert
e769215e2d
- Code improvement: removed some redundant code from the book module.
2004-10-10 11:11:38 +00:00
Dries Buytaert
bc5ec8ea09
- Fixed critical bug #10664 : made comment in collapsed mode work. One more down.
2004-10-10 10:56:59 +00:00
Dries Buytaert
2aae0af5d7
- Patch #11426 : the forum module generated an empty table for forums with no child forums.
2004-10-09 17:15:55 +00:00
Dries Buytaert
50bf139960
- Fixed bug #11405 : unchecking the "publish" box in the default workflow admin page (admin/node/configure/defaults) did not cause the default workflow to change. This was caused by the fact that node_validate() forced the value of the status field to "1".
2004-10-09 16:27:59 +00:00
Dries Buytaert
489903fd90
- Bugfix: the filter tips contained a non-existing ID which resulted in invalid XHTML code.
2004-10-09 16:01:07 +00:00
Dries Buytaert
a56f9b5c9f
- Bugfix: the filter module generated an empty <ul></ul> (= invalid XHTML) when no filter tips are present.
2004-10-09 15:47:44 +00:00
Dries Buytaert
48bcc19ca2
- Patch #10613 by Gerhard: calling a non-existent username or user ID in the blog module URL now returns a 404 error instead of an empty blog page.
2004-10-09 06:52:35 +00:00
Dries Buytaert
f8e532f714
- Patch #4925 by erikhopp: comment module emits too many id="comment"s, so the comment form's one has been renamed to 'comment-form'. This is also more consistent with the 'node-form' one.
2004-10-09 06:43:50 +00:00
Dries Buytaert
cca3c34faa
- Patch #11401 by Goba: documentation updates:
...
+ Made error strings in blog.module consistent.
+ Explained a bit better what the RSD setting is for in the blog module.
+ Removed the notes about PHP content from block module and book module, since everything is handled via the input formats now.
2004-10-09 06:29:16 +00:00
Dries Buytaert
57a96cbb78
- Bug #10530 : added a missing period to a sentence in the help text.
2004-10-08 16:54:35 +00:00
Dries Buytaert
673f35037d
- Patch #11179 by stefan: fixed broken URL in context sensitive help.
2004-10-08 16:52:02 +00:00
Dries Buytaert
44f89e5aef
- Patch #11388 by pss0ft/Stefan: fixed time offset bug in archive module.
2004-10-08 11:29:31 +00:00
Dries Buytaert
af1eb3b9db
- Reintroduced the book outline feature: non-book pages now have an outline-tab on their node page, given you have permission to maintain books. Using the outline-tab, nodes can be added to a book's hierarchy. Also added some context sensitive help and fixed some quotes.
2004-10-08 11:17:59 +00:00
Dries Buytaert
5f5b02af92
- Patch #11375 by Robert Douglass: removed redundant 'global $user' from forum_insert().
2004-10-07 19:07:57 +00:00
Steven Wittens
bd7d38bd5b
Hopefully fixing all filter issues with comments.
2004-10-07 14:33:54 +00:00
Dries Buytaert
96121dbbe2
- Small refinement with regard to the page title.
2004-10-06 20:43:05 +00:00