Progress 13 for the dashboards

This commit is contained in:
Julio Cesar Laura
2011-10-31 19:06:40 -04:00
parent 6935394727
commit 8068f7dd26
3 changed files with 21 additions and 12 deletions

View File

@@ -89,7 +89,7 @@ class PMDashlet extends DashletInstance implements DashletInterface {
public function saveDashletInstance($data) {
try {
$this->dashletObject->createOrUpdate($data);
$this->createOrUpdate($data);
}
catch (Exception $error) {
throw $error;
@@ -98,7 +98,7 @@ class PMDashlet extends DashletInstance implements DashletInterface {
public function deleteDashletInstance($dasInsUid) {
try {
$this->dashletObject->remove($dasInsUid);
$this->remove($dasInsUid);
}
catch (Exception $error) {
throw $error;