Renamed MULTITEAM_MODE to MULTIORG_MODE to better reflect the meaning of the constant.
authorNik Okuntseff <support@anuko.com>
Wed, 24 Apr 2019 15:25:50 +0000 (15:25 +0000)
committerNik Okuntseff <support@anuko.com>
Wed, 24 Apr 2019 15:25:50 +0000 (15:25 +0000)
WEB-INF/config.php.dist
WEB-INF/templates/footer.tpl
WEB-INF/templates/header.tpl
login.php
mobile/login.php
register.php

index 577baea..1785336 100644 (file)
@@ -42,12 +42,12 @@ define('DSN', 'mysqli://root:no@localhost/dbname?charset=utf8mb4');
 // and now you see some corrupted characters. See http://dev.mysql.com/doc/refman/5.0/en/charset-mysql.html
 
 
-// MULTITEAM_MODE option defines whether users can create their own top groups (organizations).
+// MULTIORG_MODE option defines whether users can create their own top groups (organizations).
 // When false, a Time Tracker server is managed by admin, who creates top groups (one or many).
 //
 // Available values are true or false.
 //
-define('MULTITEAM_MODE', true);
+define('MULTIORG_MODE', true);
 
 
 // Application name.
index eafc12d..1ad5a72 100644 (file)
@@ -12,7 +12,7 @@
       <br>
       <table cellspacing="0" cellpadding="4" width="100%" border="0">
         <tr>
-          <td align="center">&nbsp;Anuko Time Tracker 1.19.3.4982 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+          <td align="center">&nbsp;Anuko Time Tracker 1.19.3.4983 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
             <a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
             <a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
             <a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>
index b420f1a..2c5fa61 100644 (file)
         <tr>
           <td class="systemMenu" height="17" align="center">&nbsp;
             <a class="systemMenu" href="login.php">{$i18n.menu.login}</a>
-  {if isTrue('MULTITEAM_MODE') && $smarty.const.AUTH_MODULE == 'db'}
+  {if isTrue('MULTIORG_MODE') && $smarty.const.AUTH_MODULE == 'db'}
             <a class="systemMenu" href="register.php">{$i18n.menu.create_group}</a>
   {/if}
             <a class="systemMenu" href="{$smarty.const.FORUM_LINK}" target="_blank">{$i18n.menu.forum}</a>
index 68a8067..8185203 100644 (file)
--- a/login.php
+++ b/login.php
@@ -75,7 +75,7 @@ if ($request->isPost()) {
   }
 } // isPost
 
-if(!isTrue('MULTITEAM_MODE') && !ttOrgHelper::getOrgs())
+if(!isTrue('MULTIORG_MODE') && !ttOrgHelper::getOrgs())
   $err->add($i18n->get('error.no_groups'));
 
 // Determine whether to show login hint. It is currently used only for Windows LDAP authentication.
index 26b75db..a432e5b 100644 (file)
@@ -80,7 +80,7 @@ if ($request->isPost()) {
   }
 } // isPost
 
-if(!isTrue('MULTITEAM_MODE') && !ttOrgHelper::getOrgs())
+if(!isTrue('MULTIORG_MODE') && !ttOrgHelper::getOrgs())
   $err->add($i18n->get('error.no_groups'));
 
 // Determine whether to show login hint. It is currently used only for Windows LDAP authentication.
index 4c923c7..0c0374b 100644 (file)
@@ -29,7 +29,7 @@
 require_once('initialize.php');
 import('form.Form');
 
-if (!isTrue('MULTITEAM_MODE') || $auth->isPasswordExternal()) {
+if (!isTrue('MULTIORG_MODE') || $auth->isPasswordExternal()) {
   header('Location: login.php');
   exit();
 }