Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Commit

Permalink
add ver 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shahryarjb committed May 6, 2017
1 parent ea6aed0 commit 0905f2a
Show file tree
Hide file tree
Showing 53 changed files with 66 additions and 76 deletions.
2 changes: 1 addition & 1 deletion admin/controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/controllers/outputs.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
19 changes: 11 additions & 8 deletions admin/controllers/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down Expand Up @@ -74,14 +74,10 @@ public function updateAllSettings() {
// ports value
//------------------------------------------
$saman_active = $input['jform']['active9'];
$saman_user = $input['jform']['username9'];
$saman_pass = $input['jform']['password9'];
$saman_terminal = $input['jform']['terminalcode9'];
$port->saman = array(
'bankid' => 9 ,
'active' => $saman_active,
'username' =>$saman_user ,
'password' =>$saman_pass ,
'terminal_code' =>$saman_terminal ,
'test_mode' => 0
);
Expand Down Expand Up @@ -123,8 +119,6 @@ public function updateAllSettings() {
checkHack::checkNum($mellat_active) &&
checkHack::checkNum($zarinpal_active) &&
checkHack::checkNum($zarinpal_test) &&
checkHack::checkString($saman_user) &&
checkHack::checkString($saman_pass) &&
checkHack::checkString($saman_terminal) &&
checkHack::checkString($mellat_user) &&
checkHack::checkString($mellat_pass) &&
Expand All @@ -140,9 +134,18 @@ public function updateAllSettings() {
$link = JRoute::_('index.php?option=com_tinypayment&view=Settings', false);
$app->redirect($link, '<h2>تنظیمات با موفقیت ذخیره شد</h2>', $msgType='Message');
}
else {
else if($zarinpal_active == 1 && $zarinpal_test == 1) {
$link = JRoute::_('index.php?option=com_tinypayment&view=Settings', false);
$app->redirect($link, '<h2>درگاه تست و اصلی زرین پال نمی تواند در یک زمان فعال باشد.</h2>', $msgType='Error');
}
else {
$model = $this->getModel('settings');
$model->updateMainSettings($data);
foreach($port as $bank){
$model->updatePortSettings($bank);
}
$link = JRoute::_('index.php?option=com_tinypayment&view=Settings', false);
$app->redirect($link, '<h2>تنظیمات با موفقیت ذخیره شد</h2>', $msgType='Message');
}
}
else {
Expand Down
2 changes: 1 addition & 1 deletion admin/controllers/statistics.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/controllers/storepayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/controllers/storepayments.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/helpers/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/helpers/jdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
Expand Down
4 changes: 2 additions & 2 deletions admin/helpers/tinypayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down Expand Up @@ -53,7 +53,7 @@ public static function cRight() {
echo '<div class="span6 cright">
تمامی حقوق " <a title="کامپوننت آسان پرداخت جوملا" href="https://trangell.com/fa/blog/90-کامپوننت-آسان-پرداخت-جامع-جوملا" rel="alternate">کامپوننت آسان پرداخت جوملا</a> " متعلق به وبسایت " <a title="گروه برنامه نویسی ترانگل" href="https://trangell.com/fa/" rel="alternate">ترانگل</a> " می باشد.
<code>
نسخه 3.0.0
نسخه 3.0.1
</code>
</div>';
}
Expand Down
2 changes: 1 addition & 1 deletion admin/models/outputs.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/models/rules/greeting.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access to this file
Expand Down
2 changes: 1 addition & 1 deletion admin/models/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/models/statistics.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/models/storepayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/models/storepayments.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/tables/outputs.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/tables/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/tables/statistics.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/tables/storepayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
Expand Down
2 changes: 1 addition & 1 deletion admin/tinypayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/guide/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/guide/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/outputs/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/outputs/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
7 changes: 1 addition & 6 deletions admin/views/settings/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down Expand Up @@ -95,11 +95,6 @@
<input type="radio" name="active9" value="1" <? echo ($port_saman->active) == 1 ? 'checked="checked"' : ''; ?>> بله
<input type="radio" name="active9" value="0" <? echo ($port_saman->active) == 0 ? 'checked="checked"' : ''; ?>> خیر
<hr>
<h5>نام کاربری : </h5>
<input name="username9" id="username9" value="<? echo htmlspecialchars($port_saman->username, ENT_COMPAT, 'UTF-8'); ?>" class="required" required="required" aria-required="true" aria-invalid="false" type="text"><br>
<h5>کلمه عبور : </h5>

<input name="password9" id="password9" value="<? echo htmlspecialchars($port_saman->password, ENT_COMPAT, 'UTF-8'); ?>" class="required" required="required" aria-required="true" aria-invalid="false" type="text"><br>
<h5>شماره ترمینال : </h5>
<input name="terminalcode9" id="terminalcode9" value="<? echo htmlspecialchars($port_saman->terminal_code, ENT_COMPAT, 'UTF-8'); ?>" class="required" required="required" aria-required="true" aria-invalid="false" type="text"><br>
<?php echo JHtml::_('bootstrap.endTab'); ?>
Expand Down
2 changes: 1 addition & 1 deletion admin/views/settings/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/statistics/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/statistics/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/storepayment/tmpl/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/storepayment/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/storepayments/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion admin/views/storepayments/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion site/controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

Expand Down
2 changes: 1 addition & 1 deletion site/controllers/form.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access.
Expand Down
2 changes: 1 addition & 1 deletion site/helpers/inputcheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
Expand Down
2 changes: 1 addition & 1 deletion site/helpers/jdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
Expand Down
2 changes: 1 addition & 1 deletion site/helpers/mellat.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @package Joomla - > Site and Administrator payment info
* @subpackage com_tinypayment
* @copyright trangell team => https://trangell.com
* @copyright Copyright (C) 20016 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (C) 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
Expand Down
Loading

0 comments on commit 0905f2a

Please sign in to comment.