Dries Buytaert
9802b20a17
- Patch #20188 by Goba: Node_feed() instructs the nodeapi view call it invokes to deal with the body of the node, but afterwards it only uses the teaser to generate the feed. So the nodeapi hook should be called with teaser processing in mind. This simple patch fixes that.
2005-04-11 16:39:19 +00:00
Steven Wittens
c4d24a48c5
- Unnecessary check_plain in contact.module
2005-04-11 11:06:01 +00:00
Steven Wittens
230db1039a
- Missing check_url() in form().
2005-04-10 10:22:40 +00:00
Dries Buytaert
8f18b9684f
- Updated CHANGELOG
2005-04-08 15:01:38 +00:00
Dries Buytaert
bf9d98d664
- Patch #19697 by Morbus: FOLKSONOMY.
...
This patch adds folksonomy support to Drupal (named internally as "Free tagging"). In a nutshell, the core difference is the input method: unlike normal taxonomies which are administratively controlled, a "free tagging" vocabulary allows tag creation when the node is submitted. It does this through an text input box, as opposed to a dropdown or selectbox. This patch:
* Removes the useless "Preview form" of a vocabulary.
* Alters the vocabulary table to include a new "tags" column.
* Adds a new "Free tagging" preference on vocabulary creation/editing.
* Modifies the vocabulary overview to support pagers for free tagging vocabs.
The new code integrates tightly with the existing taxonomy code. The only additional processing occurs on node save and edit, where we parse through the tags associated with a node. All other display (and thus, code) remains the same.
2005-04-08 14:59:14 +00:00
Dries Buytaert
47f1f7f90a
- Patch #19609 by Daniel: fix problem with database prefixing
2005-04-08 14:24:03 +00:00
Dries Buytaert
e722f0df58
- Patch #19474 by Daniel: extended documentation on database configuration.
2005-04-08 14:14:24 +00:00
Dries Buytaert
8f1e9cd720
- Modified patch #18215 by ankur: make sure the comment statistics update after approval in the moderation queue.
2005-04-08 13:34:10 +00:00
Dries Buytaert
2eb99e5fa2
- Added missing }
2005-04-08 13:18:58 +00:00
Dries Buytaert
a21f084160
- Patch by Drumm: change the wording for clarity.
2005-04-08 13:06:37 +00:00
Dries Buytaert
58b326a838
- Fixed bug #19432 , modified patch from Junyor: database update fails when a name contains a quote.
2005-04-08 12:28:14 +00:00
Dries Buytaert
67f7d6947e
- Fixed bug #19868 : undefined variable.
2005-04-08 11:24:46 +00:00
Dries Buytaert
38eef18e98
- Patch #19615 by chx: fixed problem forum container getting lets when editing a forum.
2005-04-08 11:07:57 +00:00
Steven Wittens
0f41706acc
- #19874 : Fix aggregator escaping after check_plain bug
...
- Fix bug in decode_entities() with double-escaped entities.
2005-04-07 22:46:55 +00:00
Dries Buytaert
7d3d5532df
- Fixed warning.
2005-04-07 20:09:36 +00:00
Dries Buytaert
6ba8f32cca
- Patch #13503 by chx: made the menu cache locale aware.
2005-04-07 20:00:48 +00:00
Dries Buytaert
961cf7af44
- By default, do not show comment controls.
2005-04-07 05:24:08 +00:00
Dries Buytaert
29f6541c5e
- Patch #20103 by Neil: Removing another place where we have hard coded HTML instead of the form functions. The unpublish selection actually didn't seem to work, so I removed it since we have delete. It should be implemented as a link anyway.
2005-04-07 05:21:30 +00:00
Dries Buytaert
2252aacc7c
- Modified patch #19941 by willmoy: improve upgrade instructions.
2005-04-06 19:04:02 +00:00
Dries Buytaert
97bfa01725
- Patch #18828 by me, jbond and TDobes: moves the textarea hook for 'pre' between the title and the textarea. This makes it easier for simply textarea enhancements like quicktags to add a toolbar just above the textarea.
2005-04-06 07:43:10 +00:00
Steven Wittens
0f79c1e946
- Improve recursion in taxonomy_get_tree() (Morbus)
2005-04-06 04:48:39 +00:00
Dries Buytaert
18e852e4e7
- Patch #19933 by willmoy: stop output buffering once the page has been rendered.
2005-04-05 19:00:24 +00:00
Dries Buytaert
91e8b1b1e4
- Removed weird phpdoc line
2005-04-05 07:25:11 +00:00
Dries Buytaert
398ed04670
- Patch #19960 by Gerhard: removed left-over DISTINCT. Spotted by BuddaBoy.
2005-04-04 21:32:21 +00:00
Dries Buytaert
c7c33cc174
- Modified patch #19694 by chx: makes sure that block.module deals by default only with regions 0 and 1 as it does now but lets you use block_list with any region you define. This opens many possibilites. You may do a multi region module, with your admin UI using the blocks table as storage and the block_list matcher. Or you may do a sections module using the block matcher without cluttering the current blocks list.
2005-04-04 12:27:05 +00:00
Dries Buytaert
9660db2c4e
- Patch #19888 by jhriggs: fixed terms getting lost upon preview.
2005-04-03 09:27:01 +00:00
Dries Buytaert
6e1431705e
- Patch #19768 by danielc: line 593 in version 1.109 of database.pgsql is problematic. The line creates a unique index for sid. But, sid is already a primary key so doesn't need a unique index on it. Let alone, the syntax is wrong due to wrapping the table name in {}'s. This patch removes the line.
2005-04-03 08:56:48 +00:00
Dries Buytaert
8adb531bd1
- Patch #19894 by Gerhard: provided defaults for the throttle module settings.
2005-04-03 08:53:52 +00:00
Dries Buytaert
69a066c4cd
- Patch #19895 by Moshe: currently modules can inadvertently load all other modules during the bootstrap. this is easy to do by calling a node_load() or module_invoke_all(). this degrades performance for anonymous users when caching is enabled. With this patch, the module writer will see an php error like "Call to undefined function: drupal_set_html_head()" if this is attempted. basically, unavailable functions are actually reported as unavailable.
2005-04-03 08:03:18 +00:00
Dries Buytaert
f98bbea2f0
- 'models' -> 'modules'
2005-04-03 08:02:27 +00:00
Steven Wittens
d48351a027
- #19873 : drupal_specialchars -> check_plain
2005-04-02 18:22:17 +00:00
Dries Buytaert
a3e9b35afc
- Patch #19451 by JonBob: improved consistency of module descriptions. We should write guidelines for this -- maybe in the PHPDoc code of the _help hook.
2005-04-01 15:55:02 +00:00
Dries Buytaert
71c021c6f7
- Patch #19588 by Uwe: INSTALL.txt updates.
2005-04-01 15:30:35 +00:00
Dries Buytaert
7bdcba1720
- Patch #19739 by Uwe: corrected many typo's in the documentation and code comments
2005-03-31 21:18:08 +00:00
Steven Wittens
be14203534
- #18817 : Clean up plain-text checking (see drupal-devel!)
2005-03-31 09:25:33 +00:00
Dries Buytaert
99233a9c99
- Patch #19590 by Moshe: lazy initialization of the theme system. Improves
...
performance of pages that don't need the theme system (such as RSS feeds)
and makes it easier to set a custom theme.
2005-03-29 21:01:47 +00:00
Steven Wittens
a9091183e1
- Part of #17747 was not committed (pgsql fixes).
2005-03-29 03:28:02 +00:00
Steven Wittens
ab4261dc31
- #19517 : Fix GD2 toolkit error.
...
- Tweak code style.
2005-03-29 00:01:23 +00:00
Steven Wittens
57af1cef64
- #19515 : Improved system/test clean URL checker.
2005-03-27 23:37:20 +00:00
Steven Wittens
befa26b071
- Pngcrushed.
2005-03-27 23:04:20 +00:00
Steven Wittens
bbae5e815d
- #18795 : Display message to forum admin if there are no forums yet.
2005-03-27 22:51:47 +00:00
Steven Wittens
54dfc577ba
- #19353 : Fix 'submit' button behaviour wrt optional previewing and form errors.
2005-03-27 21:34:50 +00:00
Steven Wittens
bf312dfe66
- Typo in drupal.css
2005-03-27 21:28:25 +00:00
Steven Wittens
39ed6a2456
- #16531 : Fix weird IE crash on some admin pages with pushbutton.
2005-03-27 18:55:35 +00:00
Steven Wittens
d8fad6e24f
- #17343 : Fix safari CSS issues with node admin.
2005-03-27 15:54:44 +00:00
Steven Wittens
576c60803d
- #19405 : Fix SQL in comment block for anonymous users.
2005-03-24 22:09:31 +00:00
Dries Buytaert
571369c62f
- Patch #18732 by nysus and Morbus: improved the forum module's help texts.
2005-03-23 21:53:10 +00:00
Dries Buytaert
2584b1957d
- Updated the start date of the updates.
2005-03-23 20:36:41 +00:00
Dries Buytaert
f514f55112
- Patch #18700 by Stefan and James: removed GD1 calls, improved error/status reporting, etc.
2005-03-23 20:26:21 +00:00
Dries Buytaert
eb2fb414fa
- Patch by Matt and chx: improved performance of taxonomy queries. When many
...
terms are matched, the query would become very slow.
2005-03-23 06:12:30 +00:00