-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* @since 2.0.0 | ||
* @package com_plugnmeet | ||
* @author Jibon L. Costa <[email protected]> | ||
* @copyright Copyright (C) MynaParrot SL. All Rights Reserved | ||
* @license GNU General Public License version 2 or later; see LICENSE.txt | ||
*/ | ||
defined('_JEXEC') or die; | ||
|
||
use Joomla\CMS\Factory; | ||
|
@@ -59,9 +66,9 @@ public function postflight(string $type, InstallerAdapter $adapter): bool | |
->where($db->qn('type') . ' = ' . $db->q("component")) | ||
->where($db->qn('element') . ' = ' . $db->q("com_plugnmeet")); | ||
$db->setQuery($query); | ||
$db->execute(); | ||
|
||
return $db->execute(); | ||
} | ||
Factory::getApplication()->enqueueMessage(Text::_("COM_PLUGNMEET_XML_DESCRIPTION")); | ||
|
||
return true; | ||
} | ||
|