See the Mailing lists or Drupal Issue queue. There are also various working groups on groups.drupal.org

What's new in Drupal 4.7?

I am rather new to Drupal, use 4.6 currently and constantly hear a lot of good things about coming 4.7. However, I cannot locate any kind of "what's new" list or whatever of this kind :)

Could anybody, please, point me to the information about what's going to be changed/added/improved in 4.7?

ssl inside de core

Is ssl considered on the new 4.7?

Would it be a good idea to think it as a feature? is version 4.7 accepting new features?

I did some modifications to a 4.6.5 version to meet some ssl requirements I need:

. user login
. account modification
. address book

I tried to use the bottom line functions so the ssl feature can be used sitewide and, while I did some strange workarounds while playing with the base_url and the url() l() and drupal_goto() functions.

ImageMagic

Hello guys,

I'm using both flexinode and image modules in my site. Flexinode implements its own image processing using ImageMagic lib.
I just noticed that image module has image.imagemagick.inc file where some usefull functions for ImageMagic are written.
But it is not used anywhere within the Image module.

Can somebody give me a hint what is that image.imagemagick.inc file for ? And how it can be used ?

Thanks.
Regards.

where is function i18n_get_lang in common.inc point ???

Hello,

I have found this function in common.inc : i18n_get_lang althought I have not installed i18n.module.

I have performed text search in all the drupal folder code without founding a such function.

Does someone knows where this function i18n_get_lang in common.inc point ?

or

Is Drupal in the way to be internationalised ?

Thanks

Bertrand

Error with node access modules and mysql 5

i get an error with mysql 5.0.18 (with 4.1 no error) + event module + a node access module (with both node_privacy_byrole and simple_access) and according to http://drupal.org/node/40623 this issue is also with the image module

my log error is:
Unknown column 'n.nid' in 'on clause' query: SELECT DISTINCT(n.nid), e.event_start FROM event e INNER JOIN node_access na ON na.nid = n.nid INNER JOIN node n ON n.nid = e.nid WHERE (na.grant_view >= 1 AND ((na.gid = 0 AND na.realm = 'all') OR (na.gid = 0 AND na.realm = 'simple_access'))) AND n.status = 1 AND ((e.event_start > 1136073600 AND e.event_start < 1138751999) OR (e.event_end > 1136073600 AND e.event_end < 1138751999) OR (e.event_start < 1136073600 AND e.event_end > 1138751999)) ORDER BY event_start in /sites-new/includes/database.mysql.inc on line 108.

there is no error when transformed to:
SELECT DISTINCT(n.nid), e.event_start FROM event e INNER JOIN node n ON n.nid = e.nid INNER JOIN node_access na ON na.nid = n.nid WHERE (na.grant_view >= 1 AND ((na.gid = 0 AND na.realm = 'all') OR (na.gid = 0 AND na.realm = 'simple_access'))) AND n.status = 1 AND ((e.event_start > 1136073600 AND e.event_start < 1138751999) OR (e.event_end > 1136073600 AND e.event_end < 1138751999) OR (e.event_start < 1136073600 AND e.event_end > 1138751999)) ORDER BY event_start;

as the problem appears only when i display the calendar on i looked into calendar functions and when i comment the 945 line in event.module displaying the calendar doesnt show any errors

Delete and revisions in modules

I am trying to change one of my modules (daily) to store revisions in its database table. For this, I have changed the nid primary key in the daily table to vid (version-id).

When a node is deleted, I want to remove all old revision records in the daily table belonging to it. But the $node object does not contain the vid's of old revisions, and the node_revisions table is cleared before the node_invoke($node,'delete') .

I see two solutions for this problem:

Pages

Subscribe with RSS Subscribe to RSS - Deprecated - Drupal core