love the new features.. here are some of the problems i've encountered.. i would have submitted a diff file, but i don't know how to work the cvs.. sorry..

line 38:

function privatemsg_conf_options() should be function privatemsg_settings()

so the settings are visible in the admin interface.

line 174:

db_query("UPDATE privatemsg SET recipient_del = 1 WHERE folder = '%d'", $edit["current_folder"]);

should be

db_query("UPDATE privatemsg SET recipient_del = 1 WHERE folder = '%d' AND recipient = '%d'", $edit["current_folder"], $user->uid);

otherwise when a user empties her inbox folder, all messages in the inboxes of every user is set to recipient_del = '1'

line 291:

variable_get("default_nodes_main", 10) should be variable_get("privatemsg_per_page", 10)

so the pager acts according to the settings..

Comments

matt westgate’s picture

Component: modules » Code
Assigned: Unassigned » matt westgate

Fixed in CVS and 4-3-0

Anonymous’s picture

Automatically closed due to inactivity (marked fixed for 14 days).