Skip to content

Commit

Permalink
Concatenation fixes round trip
Browse files Browse the repository at this point in the history
  • Loading branch information
csev committed Mar 24, 2022
1 parent c5cfefb commit feb6f2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/pdo.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
$PDOX = new \Tsugi\Util\PDOX($CFG->pdo, $CFG->dbuser, $CFG->dbpass);
$PDOX->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch(\PDOException $ex){
error_log("DB connection: "+$ex->getMessage());
error_log("DB connection: ". $ex->getMessage());
die($ex->getMessage()); // with error_log
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Util/LTI13.php
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ public static function generatePKCS8Pair(&$publicKey, &$privateKey) {

if ( $privKey === false ) {
$error = openssl_error_string();
error_log("generatePKCS8Pair error=".$error);
error_log("generatePKCS8Pair error=". $error);
$privateKey = null;
$publicKey = null;
return $error;
Expand Down

0 comments on commit feb6f2b

Please sign in to comment.