Skip to content

Commit 6f1cca7

Browse files
author
mcramer
committed
Domain module was moved to client - changed remoting lib to match this.
1 parent 0baa5d4 commit 6f1cca7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

interface/lib/classes/remoting.inc.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1835,7 +1835,7 @@ public function domains_domain_get($session_id, $primary_id)
18351835
return false;
18361836
}
18371837
$app->uses('remoting_lib');
1838-
$app->remoting_lib->loadFormDef('../domain/form/domain.tform.php');
1838+
$app->remoting_lib->loadFormDef('../client/form/domain.tform.php');
18391839
return $app->remoting_lib->getDataRecord($primary_id);
18401840
}
18411841

@@ -1846,7 +1846,7 @@ public function domains_domain_add($session_id, $client_id, $params)
18461846
$this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
18471847
return false;
18481848
}
1849-
return $this->insertQuery('../domain/form/domain.tform.php',$client_id,$params);
1849+
return $this->insertQuery('../client/form/domain.tform.php',$client_id,$params);
18501850
}
18511851

18521852
//* Delete a record
@@ -1856,7 +1856,7 @@ public function domains_domain_delete($session_id, $primary_id)
18561856
$this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
18571857
return false;
18581858
}
1859-
$affected_rows = $this->deleteQuery('../domain/form/domain.tform.php',$primary_id);
1859+
$affected_rows = $this->deleteQuery('../client/form/domain.tform.php',$primary_id);
18601860
return $affected_rows;
18611861
}
18621862

0 commit comments

Comments
 (0)