diff --git a/app/devices/device_edit.php b/app/devices/device_edit.php index e7f01124bf..939f2207b3 100644 --- a/app/devices/device_edit.php +++ b/app/devices/device_edit.php @@ -871,16 +871,17 @@ foreach ($files as $file) { //format the device address $format = new provision(); - $mac = $format->format_address($device_address, $device_vendor); + $address = $format->format_address($device_address, $device_vendor); //render the file name - $file_name = str_replace("{\$mac}", $mac, basename($file)); + $file_name = str_replace("{\$address}", $address, basename($file)); + $file_name = str_replace("{\$mac}", $address, basename($file_name)); //add the select option echo " \n"; } echo " "; } if (permission_exists('device_add')) { - echo button::create(['type'=>'button','label'=>$text['button-copy'],'icon'=>$_SESSION['theme']['button_icon_copy'],'name'=>'btn_copy','onclick'=>"modal_open('modal-copy','new_mac_address');"]); + echo button::create(['type'=>'button','label'=>$text['button-copy'],'icon'=>$_SESSION['theme']['button_icon_copy'],'name'=>'btn_copy','onclick'=>"modal_open('modal-copy','new_address');"]); } if ( permission_exists('device_delete') || @@ -900,7 +901,7 @@ echo modal::create([ 'id'=>'modal-copy', 'type'=>'general', - 'message'=>$text['message_device']."...

", + 'message'=>$text['message_device']."...

", 'actions'=>button::create([ 'type'=>'button', 'label'=>$text['button-continue'], @@ -908,9 +909,9 @@ 'id'=>'btn_copy', 'style'=>'float: right; margin-left: 15px;', 'collapse'=>'never', - 'onclick'=>"modal_close(); if (document.getElementById('new_mac_address').value != '') { window.location='device_copy.php?id=".urlencode($device_uuid ?? '')."&mac=' + document.getElementById('new_mac_address').value; }" + 'onclick'=>"modal_close(); if (document.getElementById('new_address').value != '') { window.location='device_copy.php?id=".urlencode($device_uuid ?? '')."&mac=' + document.getElementById('new_address').value; }" ]), - 'onclose'=>"document.getElementById('new_mac_address').value = '';", + 'onclose'=>"document.getElementById('new_address').value = '';", ]); } if ( @@ -1038,13 +1039,12 @@ $device_image_name = ($current_device ?? '').'.jpg'; $device_image_full = ($device_image_path ?? '').'/'.($current_device ?? '').'/'.($device_image_name ?? ''); - if (file_exists($device_image_full)) - { - $device_image = base64_encode(file_get_contents($device_image_full)); + if (file_exists($device_image_full)) { + $device_image = base64_encode(file_get_contents($device_image_full)); - echo "
\n"; - echo ""; - echo "
"; + echo "
\n"; + echo ""; + echo "
"; } echo "\n"; echo "\n";