| Commit message (Collapse) | Author | Age |
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
or "operation" link.
- Made the main page of the administration section show an overview of all
watchdog entries with such action link.
- Fixed typo in PostgreSQL database scheme.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- page_header() now adds Last-Modified and ETag http headers.
- When running PHP as an Apache module page_header() will check the HTTP
headers for conditional gets, and will only push the content when it
fails. (Works for html and xml pages as they are all cached). Note:
this is a PHP limitation, so until PHP makes it work for other web
servers this won't work for them.
- Added created field to cache database to hold the timestamp when the
cache was created.
- Changed cache_get() to return an object with ->data and ->created.
- Update forum and locale modules.
|
|
|
|
| |
Will add it to the contributions repository.
|
|
|
|
|
|
|
| |
scheme.
- Fixed the default settings for both the MySQL and the PostgreSQL database
scheme.
|
|
|
|
| |
the queries that insert some default block values were not updated.
|
| |
|
|
|
|
| |
[NOTE: the PostgreSQL database scheme needs updating.]
|
|
|
|
| |
database scheme.
|
|
|
|
| |
by James Arthur.
|
| |
|
|
|
|
|
|
|
|
| |
a drupal_error() later on but I think we better get used to theme_invoke().
- Fixed translation bug. Patch by Moshe.
- Fixed PHP warning. Patch by ax.
|
|
|
|
|
| |
- updated database dump.
- removed tables modules, layout and referrer (don't forget to backup!).
|
| |
|
| |
|
|
|
|
|
| |
Patch by James. For sake of consistency, I updated the MySQL scheme
and added a new update entry to "update.php".
|
|
|
|
| |
jaa.
|
| |
|
| |
|
|
|
|
| |
the user table. Patch by jaa.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
is small. locale data was greater and so was not correctly recorded. strangely, update_11() in update.php reads: update_sql("ALTER TABLE users ADD session TEXT;"); but in database.mysql.inc, line 496 session varchar(32) NOT NULL default '', so the update fails."
|
|
|
|
|
| |
- updated update.php and database.mysql disable a few more modules by default.
Without the config options in place to disable things this might confuse users.
|
|
|
|
| |
by Marco.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
recent MySQL versions. I included the diffs for review.
update.php:
- update_sql("CREATE TABLE search_index (word varchar(50) default NULL, lno in
+ update_sql("CREATE TABLE search_index (word varchar(50) default NOT NULL, ln
database.mysql:
- word varchar(50) default NULL,
- lno int(10) unsigned default NULL,
- type varchar(16) default NULL,
- count int(10) unsigned default NULL,
+ word varchar(50) NOT NULL,
+ lno int(10) unsigned NOT NULL,
+ type varchar(16) default NULL,
+ count int(10) unsigned default NULL,
|
|
|
|
|
|
|
|
|
|
| |
- fixed comment flat list view missing 1 comment.
- changed update.php around a bit.
* security check isn't in effect if the db hasn't been updated.
* instructions re-organized.
* fixed some minor updates.
- updated database.mysql done by UnConeD.
- changelog update.
|
|
|
|
| |
(and possibly tabs).
|
| |
|
| |
|
| |
|
|
|
|
| |
Forgot to change a 'lid' into a 'nid'
|
|
|
|
|
| |
- Removed obsolete lid column (changed update.php and database.mysql)
- Added short help
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
for the meta system. The patches add some extra functionality to the
comment system (for example, comments can be set read-only) and fix a
couple of small problems.
+ I integrated the required SQL updates from the varius *.mysql files
into the "update.php" script. Upgrading should be easy ...
+ I did not apply/commit the "user.diff" as requested by Marco ...
+ I didn't know what to do with "forum.module" and "forum2.module":
what do you want me to do with it Marco? Which one should go in?
+ Can we remove "node_index()" now; both from "node.module" and the
themes?
+ Thanks Marco!
|
|
|
|
|
| |
- did a new dump of the database from a clean upgrade as my local devel is
a little infected with additional tables.
|
|
|
|
| |
module tables.
|
|
|
|
|
|
|
|
|
|
| |
* only problem is that the admin.php link is not available until the
admin enables the block.
* $theme->user is obsolete, will patch the themes properly in a
later patch.
- moved moderation block from theme.inc to queue.module.
* removed theme_moderation_results().
- updated database/database.mysql.
|
|
|
|
| |
information available on the mailing list.
|
|
|
|
|
|
|
| |
range of databases including MySQL, PostgreSQL, MSSQL, and others.
For additional information and an 'how to upgrade', check the mails
sent to the mailing list.
|
|
|
|
|
|
| |
list.
- Fixed the export function in book.module (patch my Julian).
- Fixed the comment alignment (comments got truncated).
|
|
|
|
| |
- Added link to the SQL definition.
|
|
|
|
|
|
|
|
|
|
|
|
| |
+ feedback wanted
- Added updated import.module (contributed by Julian):
+ user page do browse the headlines by feed and bundle, to display
the item descriptions, etc.
- Fixed small bug in common.inc.
- Updated database.mysql
|
| |
|
|
|
|
| |
- Updated database.mysql.
|