# WARNING: head commit changed in the meantime
Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop
This commit is contained in:
commit
6a61c495b3
@ -1018,7 +1018,9 @@ class Conf
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (empty($handler_file_found)) {
|
if (empty($handler_file_found)) {
|
||||||
throw new Exception('Missing log handler file '.$handler.'.php');
|
// If log handler has been removed of is badly setup, we must be able to continue code.
|
||||||
|
//throw new Exception('Missing log handler file '.$handler.'.php');
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once $handler_file_found;
|
require_once $handler_file_found;
|
||||||
|
|||||||
@ -1464,8 +1464,8 @@ if ($resql) {
|
|||||||
}
|
}
|
||||||
// Zip
|
// Zip
|
||||||
if (!empty($arrayfields['s.zip']['checked'])) {
|
if (!empty($arrayfields['s.zip']['checked'])) {
|
||||||
print '<td class="nocellnopadd center">';
|
print '<td class="nocellnopadd center tdoverflowmax100" title="'.dol_escape_htmltag($obj->zip).'">';
|
||||||
print $obj->zip;
|
print dol_escape_htmltag($obj->zip);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
|
|||||||
@ -272,9 +272,10 @@ if (is_array($results)) {
|
|||||||
|
|
||||||
|
|
||||||
if ($action != 'dosubmit') {
|
if ($action != 'dosubmit') {
|
||||||
if ($found && !$error) { // We are in a management option and no error
|
if ($found && !$error) {
|
||||||
|
// We are in a management option and no error
|
||||||
} else {
|
} else {
|
||||||
dol_print_error_email('ERRORNEWONLINESIGN');
|
dol_print_error_email('ERRORSUBMITAPPLICATION');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Print
|
// Print
|
||||||
|
|||||||
@ -323,9 +323,10 @@ print "\n";
|
|||||||
|
|
||||||
|
|
||||||
if ($action != 'dosubmit') {
|
if ($action != 'dosubmit') {
|
||||||
if ($found && !$error) { // We are in a management option and no error
|
if ($found && !$error) {
|
||||||
|
// We are in a management option and no error
|
||||||
} else {
|
} else {
|
||||||
dol_print_error_email('ERRORNEWONLINESIGN');
|
dol_print_error_email('ERRORSUBMITAPPLICATION');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Print
|
// Print
|
||||||
|
|||||||
@ -425,8 +425,9 @@ class Thirdparties extends DolibarrApi
|
|||||||
// TODO Mutualise the list into object societe.class.php
|
// TODO Mutualise the list into object societe.class.php
|
||||||
$objects = array(
|
$objects = array(
|
||||||
'Adherent' => '/adherents/class/adherent.class.php',
|
'Adherent' => '/adherents/class/adherent.class.php',
|
||||||
|
'Don' => '/don/class/don.class.php',
|
||||||
'Societe' => '/societe/class/societe.class.php',
|
'Societe' => '/societe/class/societe.class.php',
|
||||||
'Categorie' => '/categories/class/categorie.class.php',
|
//'Categorie' => '/categories/class/categorie.class.php',
|
||||||
'ActionComm' => '/comm/action/class/actioncomm.class.php',
|
'ActionComm' => '/comm/action/class/actioncomm.class.php',
|
||||||
'Propal' => '/comm/propal/class/propal.class.php',
|
'Propal' => '/comm/propal/class/propal.class.php',
|
||||||
'Commande' => '/commande/class/commande.class.php',
|
'Commande' => '/commande/class/commande.class.php',
|
||||||
@ -442,12 +443,13 @@ class Thirdparties extends DolibarrApi
|
|||||||
'FactureFournisseur' => '/fourn/class/fournisseur.facture.class.php',
|
'FactureFournisseur' => '/fourn/class/fournisseur.facture.class.php',
|
||||||
'SupplierProposal' => '/supplier_proposal/class/supplier_proposal.class.php',
|
'SupplierProposal' => '/supplier_proposal/class/supplier_proposal.class.php',
|
||||||
'ProductFournisseur' => '/fourn/class/fournisseur.product.class.php',
|
'ProductFournisseur' => '/fourn/class/fournisseur.product.class.php',
|
||||||
'Livraison' => '/delivery/class/delivery.class.php',
|
'Delivery' => '/delivery/class/delivery.class.php',
|
||||||
'Product' => '/product/class/product.class.php',
|
'Product' => '/product/class/product.class.php',
|
||||||
'Project' => '/projet/class/project.class.php',
|
'Project' => '/projet/class/project.class.php',
|
||||||
'Ticket' => '/ticket/class/ticket.class.php',
|
'Ticket' => '/ticket/class/ticket.class.php',
|
||||||
'User' => '/user/class/user.class.php',
|
'User' => '/user/class/user.class.php',
|
||||||
'Account' => '/compta/bank/class/account.class.php'
|
'Account' => '/compta/bank/class/account.class.php',
|
||||||
|
'ConferenceOrBoothAttendee' => '/eventorganization/class/conferenceorboothattendee.class.php'
|
||||||
);
|
);
|
||||||
|
|
||||||
//First, all core objects must update their tables
|
//First, all core objects must update their tables
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user