use $app_name and $app_uuid for database transaction (#6881)

This commit is contained in:
frytimo 2024-02-08 14:13:50 -04:00 committed by GitHub
parent 441bd77a5b
commit c51d485668
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -645,8 +645,8 @@
//execute delete
$database = new database;
$database->app_name = 'voicemails';
$database->app_uuid = 'b523c2d2-64cd-46f1-9520-ca4b4098e044';
$database->app_name = $this->app_name;
$database->app_name = $this->app_uuid;
$database->delete($array);
unset($array);
@ -685,8 +685,8 @@
//execute update
$database = new database;
$database->app_name = 'voicemails';
$database->app_uuid = 'b523c2d2-64cd-46f1-9520-ca4b4098e044';
$database->app_name = $this->app_name;
$database->app_name = $this->app_uuid;
$database->save($array);
unset($array);
@ -717,8 +717,8 @@
//execute update
$database = new database;
$database->app_name = 'voicemails';
$database->app_uuid = 'b523c2d2-64cd-46f1-9520-ca4b4098e044';
$database->app_name = $this->app_name;
$database->app_name = $this->app_uuid;
$database->save($array);
unset($array);