diff --git a/phpgwapi/inc/class.service_notes.inc.php b/phpgwapi/inc/class.service_notes.inc.php index 468d4f6083..f95f4a757c 100644 --- a/phpgwapi/inc/class.service_notes.inc.php +++ b/phpgwapi/inc/class.service_notes.inc.php @@ -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); } diff --git a/phpgwapi/inc/class.service_todo.inc.php b/phpgwapi/inc/class.service_todo.inc.php index d69a0a0ab1..36d6adb6cf 100644 --- a/phpgwapi/inc/class.service_todo.inc.php +++ b/phpgwapi/inc/class.service_todo.inc.php @@ -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); }