Skip to content

Commit

Permalink
Issue techjoomla#22 fix: Fix copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
manojLondhe committed Jun 26, 2019
1 parent 5b912ca commit 9bcc453
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions code/admin/controllers/logs.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<?php
/**
* @package Com.Api
* @package API
* @subpackage com_api
*
* @copyright Copyright (C) 2005 - 2017 Techjoomla, Techjoomla Pvt. Ltd. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Techjoomla <[email protected]>
* @copyright Copyright (C) 2009 - 2019 Techjoomla, Tekdi Technologies Pvt. Ltd. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/

// No direct access.
defined('_JEXEC') or die();
defined('_JEXEC') or die('Restricted access');

jimport('joomla.application.component.controlleradmin');

Expand Down
10 changes: 6 additions & 4 deletions code/admin/models/log.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<?php
/**
* @package Com.Api
* @package API
* @subpackage com_api
*
* @copyright Copyright (C) 2005 - 2017 Techjoomla, Techjoomla Pvt. Ltd. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Techjoomla <[email protected]>
* @copyright Copyright (C) 2009 - 2019 Techjoomla, Tekdi Technologies Pvt. Ltd. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/

// No direct access.
defined('_JEXEC') or die();
defined('_JEXEC') or die('Restricted access');

jimport('joomla.application.component.modeladmin');

Expand Down

0 comments on commit 9bcc453

Please sign in to comment.