Compare commits

..

No commits in common. "1357e21155471fdcb92b474a4d91435d0f345798" and "9c82aec3c5e6817392921d1d9cf4afd70d36eec1" have entirely different histories.

2 changed files with 6 additions and 1 deletions

View File

@ -39,9 +39,11 @@ class BenutzerController
public function nextId() public function nextId()
{ {
$result = $this->db->nextId(); $result = $this->db->nextId();
return json_encode($result); return $result;
} }
} }

View File

@ -94,6 +94,7 @@ class BenutzerModel extends Database
return $result; return $result;
} }
public function nextId() public function nextId()
{ {
@ -113,6 +114,8 @@ class BenutzerModel extends Database
return $result; return $result;
} }
} }
?> ?>