Merge pull request #5797 from winsock/patch-4

Do not load base64 data into phrase edit by selecting the specific fields that are needed.
This commit is contained in:
FusionPBX 2021-03-10 00:03:00 -07:00 committed by GitHub
commit 1597d338ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -296,8 +296,8 @@
unset($sql, $parameters);
}
//get the recordings
$sql = "select * from v_recordings ";
//get the recording names from the database.
$sql = "select recording_name, recording_filename from v_recordings ";
$sql .= "where domain_uuid = :domain_uuid ";
$sql .= "order by recording_name asc ";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];