How can i view all bugs/features for the profile.module via the website? I patched my profile.module a while back but can't remember who's work it was.
Does anybody know who did the patch to profile.module to add the facility to use taxonomy lists in select menus?
In 4.6, how can the "delete" option/permission be removed when an "edit" permission is given to a certain content type (like the Drupal site does for its forum topics, for example)?
As a related question, is a separate "delete node" permission (separate from "edit node") in the works for Drupal 4.7?
I've found some post about AJAX and Drupal here at drupal.org and i have one question.
Is there something like a AJAX API to write AJAX based Drupal modules?
On my site learn-php/catalog you can find a AJAX based (Beta) Web Directory Drupal module. I used the SAXAX API from www.modernmethod.com to implement this little sample.
But in my opinion it would be much better if we have one API to implement AXAX fiunctionality in Drupal modules.
Is a separate "delete node" permission (separate from "edit node") in the works for Drupal 4.7?
As a related question -- in 4.6 -- how can the "delete" option/permission be removed when an "edit" permission is given with respect to a certain content type (like the Drupal site does, for example)?
hey guys, not sure where to post this suggestion, but I think the new forum topic block sorting should be based on creation date rather then node id.
Easy change:
$sql = db_rewrite_sql("SELECT n.nid, n.title, n.created, l.comment_count FROM {node} n INNER JOIN {node_comment_statistics} l ON n.nid = l.nid WHERE n.type = 'forum' AND n.status = 1 ORDER BY n.created DESC");