Merge pull request #67 from exciler/bugfix_gutschrift_php8

fix index accessor for new PHP Versions (implicit const string)
This commit is contained in:
OpenXE-ERP 2023-03-13 13:00:35 +01:00 committed by OpenXE
parent 75aaf5e2af
commit 5638f18770
2 changed files with 2 additions and 2 deletions

View File

@ -1260,7 +1260,7 @@ class Gutschrift extends GenGutschrift
if((!empty($alle_gutschriften)?count($alle_gutschriften):0) > 1)
{
for($agi=0;$agi<(!empty($alle_gutschriften)?count($alle_gutschriften):0);$agi++)
$gutschriften .= "<a href=\"index.php?module=gutschrift&action=edit&id=".$alle_gutschriften[$agi][id]."\" target=\"_blank\">".$alle_gutschriften[$agi][belegnr]."</a> ";
$gutschriften .= "<a href=\"index.php?module=gutschrift&action=edit&id=".$alle_gutschriften[$agi]['id']."\" target=\"_blank\">".$alle_gutschriften[$agi]['belegnr']."</a> ";
$this->app->Tpl->Add('MESSAGE',"<div class=\"warning\">F&uuml;r die angebene Rechnung gibt es schon folgende Gutschriften: $gutschriften</div>");
}
}

View File

@ -1804,7 +1804,7 @@ class Rechnung extends GenRechnung
{
$gutschriften = '';
for($agi=0;$agi<$cgutschriften;$agi++)
$gutschriften .= "<a href=\"index.php?module=gutschrift&action=edit&id=".$alle_gutschriften[$agi][id]."\" target=\"_blank\">".$alle_gutschriften[$agi][belegnr]."</a> ";
$gutschriften .= "<a href=\"index.php?module=gutschrift&action=edit&id=".$alle_gutschriften[$agi]['id']."\" target=\"_blank\">".$alle_gutschriften[$agi]['belegnr']."</a> ";
$this->app->Tpl->Add('MESSAGE',"<div class=\"warning\">F&uuml;r die angebene Rechnung gibt es schon folgende Gutschriften: $gutschriften</div>");
}