Fixes for upstream

This commit is contained in:
Deon George
2012-07-01 10:18:21 +10:00
parent eb4722f92d
commit 5f5d8a906a
3 changed files with 14 additions and 4 deletions

View File

@@ -69,7 +69,7 @@ class Model_Service_Plugin_Host extends Model_Service_Plugin {
if ($this->service->queue == 'PROVISION')
return _('To Be Provisioned');
return ($this->username_value() AND $this->password_value()) ? $this->host_server->plugin()->manage_button($this,$t) : '';
return ($this->username_value() AND $this->password_value() AND $a=$this->host_server->plugin()) ? $a->manage_button($this,$t) : '';
}
}
?>