Skip to content

Commit

Permalink
3.0.10
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
nilsteampassnet committed Oct 23, 2023
1 parent 0b664f8 commit 9d24f32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.0.10');
define("UPGRADE_MIN_DATE", "1697990713");
define('TP_VERSION_MINOR', '84');
define('TP_VERSION_MINOR', '85');
define('TP_TOOL_NAME', 'Teampass');
define('TP_ONE_DAY_SECONDS', 86400);
define('TP_ONE_WEEK_SECONDS', 604800);
Expand Down
4 changes: 2 additions & 2 deletions sources/tasks.queries.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ function performTask(string $task, string $dir, string $phpBinaryPath, string $d
require_once __DIR__.'/../includes/libraries/Symfony/Component/Process/Process.php';
require_once __DIR__.'/../includes/libraries/Symfony/Component/Process/ExecutableFinder.php';
require_once __DIR__.'/../includes/libraries/Symfony/Component/Process/PhpExecutableFinder.php';

switch ($task) {
case 'users_personal_folder_task':

Expand Down Expand Up @@ -308,7 +308,7 @@ function performTask(string $task, string $dir, string $phpBinaryPath, string $d
}

// execute the process
if (undefined !== $process) {
if (isset($process) === true) {
try {
$process->start();

Expand Down

0 comments on commit 9d24f32

Please sign in to comment.