1
0
Fork 0

Fix property references

master
Anonymous Contributor 2023-08-23 18:16:35 +02:00
parent 29796584f7
commit 143f8ef3ed
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
public function addHTMLTitle($Hinzufugen){
//Zu dem Bisherigen Titel wird noch etwas am ende hinzugef<65>gt.
$this->HTMLTitle = $this->$HTMLTitle.$Hinzufugen;
$this->HTMLTitle = $this->HTMLTitle.$Hinzufugen;
$this->isBuild = false;
}
@ -98,7 +98,7 @@
public function addToMenu($html){
//Es wird noch etwas ans Men<65> angehengt.
$this->DasMenu = $this->$DasMenu.$html;
$this->DasMenu = $this->DasMenu.$html;
$this->isBuild = false;
}