Fix the voicemail greeting base64 upload
This commit is contained in:
parent
0faa26e58f
commit
4d29fd8a98
|
|
@ -209,7 +209,7 @@
|
|||
$array['voicemail_greetings'][$x]['greeting_filename'] = $file_name;
|
||||
$array['voicemail_greetings'][$x]['greeting_description'] = '';
|
||||
if (!empty($_SESSION['voicemail']['storage_type']['text']) && $_SESSION['voicemail']['storage_type']['text'] == 'base64') {
|
||||
$array['voicemail_greetings'][$x]['greeting_base64'] = base64_encode(file_get_contents($greeting_dir.'/'.$file));
|
||||
$array['voicemail_greetings'][$x]['greeting_base64'] = base64_encode(file_get_contents($greeting_dir.'/'.$file_name));
|
||||
}
|
||||
|
||||
//save the array
|
||||
|
|
|
|||
Loading…
Reference in New Issue