Skip to content

Commit

Permalink
fix some php8.4 warnings (#31831)
Browse files Browse the repository at this point in the history
Co-authored-by: Hystepik <lmarcouiller@nltechno.com>
  • Loading branch information
Hystepik and Hystepik authored Nov 15, 2024
1 parent ec91ed2 commit d726e2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/comm/action/class/actioncomm.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,7 @@ public function getActions($socid = 0, $fk_element = 0, $elementtype = '', $filt

$resarray = array();

dol_syslog(get_class()."::getActions", LOG_DEBUG);
dol_syslog(get_class($this)."::getActions", LOG_DEBUG);

// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
if (!is_object($hookmanager)) {
Expand Down
2 changes: 2 additions & 0 deletions htdocs/fourn/commande/card.php
Original file line number Diff line number Diff line change
Expand Up @@ -2107,6 +2107,7 @@
if (isModEnabled('notification')) {
require_once DOL_DOCUMENT_ROOT.'/core/class/notify.class.php';
$notify = new Notify($db);
$text = '';
$text .= '<br>';
$text .= $notify->confirmMessage('ORDER_SUPPLIER_CANCEL', $object->socid, $object);
}
Expand All @@ -2119,6 +2120,7 @@
if (isModEnabled('notification')) {
require_once DOL_DOCUMENT_ROOT.'/core/class/notify.class.php';
$notify = new Notify($db);
$text = '';
$text .= '<br>';
$text .= $notify->confirmMessage('ORDER_SUPPLIER_SUBMIT', $object->socid, $object);
}
Expand Down

0 comments on commit d726e2e

Please sign in to comment.