Skip to content

Commit

Permalink
fix missing namespace (oops)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbsali committed Feb 28, 2014
1 parent bfa7e5a commit 9b8119f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Redmine/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function api($name)
if (isset($this->apis[$name])) {
return $this->apis[$name];
}
$c = 'Api\\'.$classes[$name];
$c = 'Redmine\Api\\'.$classes[$name];
$this->apis[$name] = new $c($this);

return $this->apis[$name];
Expand Down

0 comments on commit 9b8119f

Please sign in to comment.