Skip to content

Commit

Permalink
3.1.1
Browse files Browse the repository at this point in the history
Fixed bad path to language
  • Loading branch information
root authored and root committed Dec 10, 2023
1 parent 7e83257 commit c95929b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion includes/config/include.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
define('TP_VERSION', '3.1.1');
define("UPGRADE_MIN_DATE", "1697990713");
define('TP_VERSION_MINOR', '1');
define('TP_VERSION_MINOR', '2');
define('TP_TOOL_NAME', 'Teampass');
define('TP_ONE_DAY_SECONDS', 86400);
define('TP_ONE_WEEK_SECONDS', 604800);
Expand Down
2 changes: 1 addition & 1 deletion vendor/teampassclasses/language/src/Language.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Language {
private $path;
private $translations;

public function __construct($language = null, $path = __DIR__."/../../../../language") {
public function __construct($language = null, $path = __DIR__."/../../../../includes/language") {
$superGlobal = new SuperGlobal();
if (null === $language || empty($language) === true ) {
$language = 'english';
Expand Down

0 comments on commit c95929b

Please sign in to comment.