Closed (fixed)
Project:
Services
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Jul 2009 at 14:30 UTC
Updated:
22 Aug 2009 at 03:00 UTC
In services_keyauth.admin.inc, the services_keyauth_admin_keys_delete_confirm_submit function, the call on watchdog is:
watchdog('menu', 'Deleted key %key.', array('%key' => $t_args), WATCHDOG_NOTICE);
I believe it should be:
watchdog('menu', 'Deleted key %key.', $t_args, WATCHDOG_NOTICE);
because $t_args is already an array. I've been getting a preg_match error on my Recent Log Entries page because of this.
Comments
Comment #1
marcingy commentedThank you applied to head.