Fix Voicemail DELETE FROM SQL Sentence [4.4] (#3060)
Same, the AS alias is not needed, it breaks MariaDB/MySQL and maybe other databases as well. Also, the SQL sentence is just dealing with one table, so it is not needed.
This commit is contained in:
parent
2baed9f91e
commit
02f5f567b2
|
|
@ -82,10 +82,10 @@
|
||||||
//delete the voicemail from the destionations
|
//delete the voicemail from the destionations
|
||||||
$sqld = "
|
$sqld = "
|
||||||
delete from
|
delete from
|
||||||
v_voicemail_destinations as d
|
v_voicemail_destinations
|
||||||
where
|
where
|
||||||
d.voicemail_destination_uuid = '".$voicemail_destination_uuid."' and
|
voicemail_destination_uuid = '".$voicemail_destination_uuid."' and
|
||||||
d.voicemail_uuid = '".$voicemail_uuid."'";
|
voicemail_uuid = '".$voicemail_uuid."'";
|
||||||
$db->exec(check_sql($sqld));
|
$db->exec(check_sql($sqld));
|
||||||
//redirect the browser
|
//redirect the browser
|
||||||
messages::add($text['message-delete']);
|
messages::add($text['message-delete']);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue