fix index accessor for new PHP Versions (implicit const string) in rechnung.php
This commit is contained in:
parent
2d0e9cd8f1
commit
28fc3f6bd3
|
|
@ -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ür die angebene Rechnung gibt es schon folgende Gutschriften: $gutschriften</div>");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue