Skip to content

Commit

Permalink
Merge pull request #341 from lansuite/fix-issue-340
Browse files Browse the repository at this point in the history
Fix issue #340: Function ChangeAllowed and class Mail can't be loaded
  • Loading branch information
M4LuZ committed Aug 26, 2018
2 parents 51a422c + ae35a97 commit ef4be80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions composer.json
Expand Up @@ -182,6 +182,7 @@
"modules/troubleticket/Functions/TTStatus.php",
"modules/usrmgr/Functions/Addr1Input.php",
"modules/usrmgr/Functions/Addr2Input.php",
"modules/usrmgr/Functions/ChangeAllowed.php",
"modules/usrmgr/Functions/CheckAndResizeUploadPic.php",
"modules/usrmgr/Functions/CheckBirthday.php",
"modules/usrmgr/Functions/CheckClanNotExists.php",
Expand Down
3 changes: 2 additions & 1 deletion modules/guestlist/Classes/GuestList.php
Expand Up @@ -2,6 +2,7 @@

namespace LanSuite\Module\GuestList;

use Lansuite\Module\Mail\Mail;
use LanSuite\Module\Seating\Seat2;

class GuestList
Expand Down Expand Up @@ -32,7 +33,7 @@ public function SetPaid($userid, $partyid)
{
global $db, $cfg, $func;

$mail = new Lansuite\Module\Mail\Mail();
$mail = new Mail();

if (!$userid) {
$func->error(t('Keinen Benutzer ausgewählt'));
Expand Down

0 comments on commit ef4be80

Please sign in to comment.