pdb-before_submit_update change in 1.6?
-
I’ve been fighting a number of web site email issues, and now have record update notification emails working again. In those emails, I am displaying a number of fields from the record, including “updated_by”, which is filled out with the following function:
function update_user($post) { global $current_user; $current_user = wp_get_current_user(); $post['updated_by'] = $current_user->user_login; return $post; } add_filter('pdb-before_submit_update','update_user');
As of 1.6, this field is blank in the record update notification email, although it is properly filled out in the actual entry. Has something changed in 1.6, and is there a better place for me to hang my function off of?
Mahalo for a great plugin!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘pdb-before_submit_update change in 1.6?’ is closed to new replies.