| Commit message (Collapse) | Author | Age |
|
|
|
| |
Forum module
|
|
|
|
| |
are listed in the updates-7.x-extra group
|
| |
|
|
|
|
| |
Add more indexes on {forum_index}.
|
| |
|
| |
|
| |
|
|
|
|
| |
_update_7000_field_read_fields() during Forum update 7003.
|
|
|
|
| |
field_delete_field() and others fail for inactive fields.
|
| |
|
|
|
|
| |
vocabulary machine name (with tests).
|
| |
|
| |
|
|
|
|
| |
lost on module disable.
|
|
|
|
| |
in taxonomy field's 'allowed values' setting.
|
|
|
|
| |
keys; inconsistent implementations in core.
|
|
|
|
| |
unexpected error after disabling - unistalling - re-enabling forum module.
|
|
|
|
| |
use dynamic query format.
|
|
|
|
| |
screen.
|
| |
|
|
|
|
| |
forums not usable out-of-the-box: disabled comments, no forums.
|
|
|
|
| |
add forum topics when no forums exist.
|
| |
|
|
|
|
| |
in favour of consistency.
|
|
|
|
| |
taxonomy_schema(). It was already dropped in an update function.
|
| |
|
|
|
|
| |
compliance with standards.
|
| |
|
|
|
|
| |
avoid users rendering their site unusable.
|
|
|
|
| |
(with upgrade path). Say buh-bye to old, crusty code.
|
| |
|
|
|
|
| |
weitzman: automatically install/uninstall schema.
|
|
|
|
| |
queries.
|
|
|
|
| |
and properly delete an unused variable upon uninstallation.
|
| |
|
|
|
|
| |
abstraction layer.
|
| |
|
|
|
|
| |
nominalizations from Docblocks.
|
|
|
|
| |
all .install files.
|
|
|
|
| |
table namespace.
|
| |
|
|
|
|
| |
taxonomy_term_data.
|
| |
|
| |
|
|
|
|
| |
descriptions.
|
|
|
|
| |
and term API.
|
|
|
|
| |
would leave comments, ratings, etc behind in the database.
|
|
|
|
|
|
|
|
|
|
|
| |
from numeric block IDs to string IDs.
The short explanation is that Drupal uses a lot of numeric deltas in the block system; blocks are identified by the 'module' and the 'delta'. In early Drupal, delta was numeric, but somewhere along the line it was changed to be possibly a string. In modern Drupal, block overrides are easily done via block-MODULE-DELTA.tpl.php. The primary motivation to switch to string IDs everywhere is to make these deltas friendlier to themers:
block-user-0.tpl.php --> block-user-navigation.tpl.php
block-user-1.tpl.php --> block-user-login.tpl.php
You get the picture.
|
| |
|
|
|
|
| |
node type was not re-added to the forum vocabulary when the module is re-enabled (after being disabled)
|