Skip to content

Commit

Permalink
Fix Model Name started with Uppercase (#104)
Browse files Browse the repository at this point in the history
* fix where

* fix where for telefonlist

* fix uppercase
  • Loading branch information
Memurame authored May 23, 2024
1 parent cc3dd8d commit 5c7f04e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Controllers/CronController.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public function kalahari(){
}


$adressen = model('abaAddressModel')
$adressen = model('AbaAddressModel')
->where('abacus IS NOT NULL', null)
->where('inactive', NULL)
->findAll();
Expand Down Expand Up @@ -404,7 +404,7 @@ public function kalahari(){

public function telefonlist(){

$adressen = model('abaAddressModel')
$adressen = model('AbaAddressModel')
->where('abacus IS NOT NULL', null)
->where('inactive', NULL)
->asArray()
Expand Down Expand Up @@ -469,7 +469,7 @@ public function telefonlist(){
$adressen[$i]['Status'] = "keine Rechnung";
}

$kalahari = model('abaAddressKalahariModel')
$kalahari = model('AbaAddressKalahariModel')
->select('kalahari')
->where('abacus', $adressen[$i]['abacus'])
->asArray()
Expand Down

0 comments on commit 5c7f04e

Please sign in to comment.