Fixing a typo where args was not being set properly.

Fixing some typos in the README and added troubleshooting.
This commit is contained in:
Jaisen Mathai 2010-10-01 00:52:27 -07:00
parent 5f64653149
commit f20ab2cac5
2 changed files with 15 additions and 4 deletions

View file

@ -131,7 +131,7 @@ class Resque_Job
}
$instance = new $this->payload['class'];
$isntance->args = $this->payload['args'];
$instance->args = $this->payload['args'];
if(method_exists($instance, 'setUp')) {
$instance->setUp();