--- job_queue.module.original	2008-08-18 10:35:59.000000000 +0300
+++ job_queue.module	2009-03-23 13:14:56.000000000 +0200
@@ -106,7 +106,7 @@ function job_queue_dequeue() {
   if (function_exists($job->function)) {
     $arguments = unserialize($job->arguments);
     call_user_func_array($job->function, $arguments);
-    watchdog('job_queue', 'Ran queued job "!description"', array('!description' => t($job->description, $arguments)));
+    watchdog('job_queue', 'Ran queued job "!description"', array('!description' => $job->description));
   }
   else {
     watchdog('job_queue', 'Failed to run queued job "!description" because the function %function is not defined.', array('!description' => $job->description, '%function' => $job->function), WATCHDOG_ERROR);
@@ -144,7 +144,7 @@ function job_queue_list() {
     while ($job = db_fetch_object($result)) {
       $rows[] = array(
         format_date($job->created),
-        t($job->description, unserialize($job->arguments)),
+        $job->description,
       );
     }
     $output .= theme('table', $header, $rows);
