mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-21 17:02:19 +00:00
- Renamed classes, methods and properties names in german
- All the controllers exends APIv1_Controller rather than REST_Controller - Codeceptions modified to be compliant to changes
This commit is contained in:
@@ -247,7 +247,7 @@ class studiengang extends Course_model
|
||||
*/
|
||||
public function getAllForBewerbung()
|
||||
{
|
||||
if(!$result = $this->db_query($this->_enabledCoursesQuery))
|
||||
if(!$result = $this->db_query($this->_allForBewerbungQuery))
|
||||
{
|
||||
$this->errormsg = 'Datensatz konnte nicht geladen werden';
|
||||
return false;
|
||||
|
||||
@@ -729,7 +729,7 @@ class studienplan extends Plan_model
|
||||
*/
|
||||
function getStudienplaene($studiengang_kz)
|
||||
{
|
||||
$qry = str_replace('?', $this->db_add_param($studiengang_kz, FHC_INTEGER), $this->_planQuery);
|
||||
$qry = str_replace('?', $this->db_add_param($studiengang_kz, FHC_INTEGER), $this->_studienplaeneQuery);
|
||||
|
||||
if($result = $this->db_query($qry))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user