Change ulfile to file to be similar to the voicemail greetings.

This commit is contained in:
FusionPBX 2022-06-09 17:42:04 -06:00 committed by GitHub
parent 7f6b1472e6
commit 7644c8d4fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -113,20 +113,20 @@
$_POST['a'] == "upload" $_POST['a'] == "upload"
&& permission_exists('recording_upload') && permission_exists('recording_upload')
&& $_POST['type'] == 'rec' && $_POST['type'] == 'rec'
&& is_uploaded_file($_FILES['ulfile']['tmp_name']) && is_uploaded_file($_FILES['file']['tmp_name'])
) { ) {
//remove special characters //remove special characters
$recording_filename = str_replace(" ", "_", $_FILES['ulfile']['name']); $recording_filename = str_replace(" ", "_", $_FILES['file']['name']);
$recording_filename = str_replace("'", "", $recording_filename); $recording_filename = str_replace("'", "", $recording_filename);
//make sure the destination directory exists //make sure the destination directory exists
if (!is_dir($_SESSION['switch']['recordings']['dir'].'/'.$_SESSION['domain_name'])) { if (!is_dir($_SESSION['switch']['recordings']['dir'].'/'.$_SESSION['domain_name'])) {
mkdir($_SESSION['switch']['recordings']['dir'].'/'.$_SESSION['domain_name'], 0770, true); mkdir($_SESSION['switch']['recordings']['dir'].'/'.$_SESSION['domain_name'], 0770, false);
} }
//move the uploaded files //move the uploaded files
move_uploaded_file($_FILES['ulfile']['tmp_name'], $_SESSION['switch']['recordings']['dir'].'/'.$_SESSION['domain_name'].'/'.$recording_filename); $result = move_uploaded_file($_FILES['file']['tmp_name'], $_SESSION['switch']['recordings']['dir'].'/'.$_SESSION['domain_name'].'/'.$recording_filename);
//clear the destinations session array //clear the destinations session array
if (isset($_SESSION['destinations']['array'])) { if (isset($_SESSION['destinations']['array'])) {
@ -137,7 +137,7 @@
message::add($text['message-uploaded'].": ".htmlentities($recording_filename)); message::add($text['message-uploaded'].": ".htmlentities($recording_filename));
//set the file name to be inserted as the recording description //set the file name to be inserted as the recording description
$recording_description = $_FILES['ulfile']['name']; $recording_description = $_FILES['file']['name'];
header("Location: recordings.php?rd=".urlencode($recording_description)); header("Location: recordings.php?rd=".urlencode($recording_description));
exit; exit;
} }
@ -363,7 +363,7 @@
echo "<span id='form_upload' style='display: none;'>"; echo "<span id='form_upload' style='display: none;'>";
echo button::create(['label'=>$text['button-cancel'],'icon'=>$_SESSION['theme']['button_icon_cancel'],'type'=>'button','id'=>'btn_upload_cancel','onclick'=>"$('span#form_upload').fadeOut(250, function(){ document.getElementById('form_upload').reset(); $('#btn_add').fadeIn(250) });"]); echo button::create(['label'=>$text['button-cancel'],'icon'=>$_SESSION['theme']['button_icon_cancel'],'type'=>'button','id'=>'btn_upload_cancel','onclick'=>"$('span#form_upload').fadeOut(250, function(){ document.getElementById('form_upload').reset(); $('#btn_add').fadeIn(250) });"]);
echo "<input type='text' class='txt' style='width: 100px; cursor: pointer;' id='filename' placeholder='Select...' onclick=\"document.getElementById('ulfile').click(); this.blur();\" onfocus='this.blur();'>"; echo "<input type='text' class='txt' style='width: 100px; cursor: pointer;' id='filename' placeholder='Select...' onclick=\"document.getElementById('ulfile').click(); this.blur();\" onfocus='this.blur();'>";
echo "<input type='file' id='ulfile' name='ulfile' style='display: none;' accept='.wav,.mp3,.ogg' onchange=\"document.getElementById('filename').value = this.files.item(0).name; check_file_type(this);\">"; echo "<input type='file' id='ulfile' name='file' style='display: none;' accept='.wav,.mp3,.ogg' onchange=\"document.getElementById('filename').value = this.files.item(0).name; check_file_type(this);\">";
echo button::create(['type'=>'submit','label'=>$text['button-upload'],'icon'=>$_SESSION['theme']['button_icon_upload']]); echo button::create(['type'=>'submit','label'=>$text['button-upload'],'icon'=>$_SESSION['theme']['button_icon_upload']]);
echo "</span>\n"; echo "</span>\n";
echo "</form>"; echo "</form>";