We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11d593b commit 5c7e01bCopy full SHA for 5c7e01b
admin/pwa.php
@@ -72,8 +72,7 @@
72
$file = $conf->$moduleNameLowerCase->multidir_output[$conf->entity] . '/pwa/qrcode/' . 'barcode_' . dol_print_date(dol_now(), 'dayhourlog') . '.png';
73
74
$imageData = $barcode->getBarcodePngData();
75
- $imageData = imagecreatefromstring($imageData);
76
- imagepng($imageData, $file);
+ file_put_contents($file, $imageData);
77
78
setEventMessage('SavedConfig');
79
header('Location: ' . $_SERVER['PHP_SELF'] . '?module_name=' . $moduleName . '&start_url=' . $urlToEncode);
0 commit comments