I mean for example - fb_user.module line 202

watchdog('fb_user', t("Created new ... %app" . dprint_r(array(...), 1),
array('!username' => theme('username', $user), '%app' => $fb_app->label)));

replace with

watchdog('fb_user', t("Created new ... %app!debug_info",
array('!username' => theme('username', $user),
'!debug_info' => (function_exists('dprint_r') ? dprint_r(array('session_name' => session_name(), 'session_id' => session_id()), 1) : ''),
'%app' => $fb_app->label)));

Comments

Dave Cohen’s picture

Assigned: Unassigned » Dave Cohen
Category: support » bug

That got in there by accident.

Keep submmitting issues if you find more calls like that. Thanks.

Dave Cohen’s picture

Status: Active » Fixed

Removed the dprint_r() calls.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.