Skip to content

Commit

Permalink
3.0.10
Browse files Browse the repository at this point in the history
Reverted previous fix for #3945 (deeper investigation to be done)
  • Loading branch information
nilsteampassnet committed Nov 18, 2023
1 parent 78dd46a commit 9c82f43
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.0.10');
define("UPGRADE_MIN_DATE", "1697990713");
define('TP_VERSION_MINOR', '151');
define('TP_VERSION_MINOR', '153');
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 sources/items.queries.php
Original file line number Diff line number Diff line change
Expand Up @@ -2756,7 +2756,7 @@
} else if (DB::count() === 0 && (int) $row['encrypted_data'] === 0) {
// Data is not encrypted in DB
$fieldText = [
'string' => isBase64($row['data']) === true ? base64_decode($row['data']) : $row['data'],
'string' => $row['data'],//#3945 - isBase64($row['data']) === true ? base64_decode($row['data']) :
'encrypted' => false,
'error' => false,
];
Expand Down

0 comments on commit 9c82f43

Please sign in to comment.