update to reflect new classnames

This commit is contained in:
Miles Lott 2002-03-20 03:35:42 +00:00
parent fa37f0a481
commit 1e1fd8efe1
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
function service_notes()
{
$this->provider = $GLOBALS['phpgw_info']['notes_service'] ? $GLOBALS['phpgw_info']['notes_service'] : 'notes';
$this->svc = $this->provider . '.bo' . $this->provider;
$this->svc = $this->provider . '.bo';
$type = $this->type ? $this->type : 'xmlrpc';
$this->function_map = ExecMethod($this->svc . '.list_methods',$type);
}

View File

@ -27,7 +27,7 @@
function service_todo()
{
$this->provider = $GLOBALS['phpgw_info']['todo_service'] ? $GLOBALS['phpgw_info']['todo_service'] : 'todo';
$this->svc = $this->provider . '.bo' . $this->provider;
$this->svc = $this->provider . '.bo';
$type = $this->type ? $this->type : 'xmlrpc';
$this->function_map = ExecMethod($this->svc . '.list_methods',$type);
}