mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-24 10:21:32 +01:00
Merge pull request #18825 from grandoc/new_branch_25_09_2021
fix : warning: Undefined property: stdClass:: in C:\wamp64\www\doliba…
This commit is contained in:
@@ -59,7 +59,10 @@ if (empty($font_loc)) {
|
||||
if (defined('PHP-BARCODE_PATH_COMMAND')) {
|
||||
$genbarcode_loc = constant('PHP-BARCODE_PATH_COMMAND');
|
||||
} else {
|
||||
$genbarcode_loc = $conf->global->GENBARCODE_LOCATION;
|
||||
$genbarcode_loc = '';
|
||||
if (!empty($conf->global->GENBARCODE_LOCATION)) {
|
||||
$genbarcode_loc = $conf->global->GENBARCODE_LOCATION;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user