We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| @@ 271-281 (lines=11) @@ | ||
| 268 | ||
| 269 | } |
|
| 270 | ||
| 271 | if (empty($GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey'])) { |
|
| 272 | ||
| 273 | if (TYPO3_DLOG) { |
|
| 274 | ||
| 275 | \TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_helper->decrypt('.$encrypted.', '.$hash.')] No encryption key set in TYPO3 configuration', self::$extKey, SYSLOG_SEVERITY_ERROR); |
|
| 276 | ||
| 277 | } |
|
| 278 | ||
| 279 | return; |
|
| 280 | ||
| 281 | } |
|
| 282 | ||
| 283 | $iv = substr(md5($GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey']), 0, mcrypt_get_iv_size(MCRYPT_BLOWFISH, MCRYPT_MODE_CFB)); |
|
| 284 | ||
| @@ 1350-1361 (lines=12) @@ | ||
| 1347 | ||
| 1348 | list ($structure) = $GLOBALS['TYPO3_DB']->sql_fetch_row($result); |
|
| 1349 | ||
| 1350 | } else { |
|
| 1351 | ||
| 1352 | if (TYPO3_DLOG) { |
|
| 1353 | ||
| 1354 | \TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_document->save('.$_pid.', '.$_core.')] Could not identify document/structure type ' . $GLOBALS['TYPO3_DB']->fullQuoteStr($metadata['type'][0], 'tx_dlf_structures'), |
|
| 1355 | self::$extKey, SYSLOG_SEVERITY_ERROR); |
|
| 1356 | ||
| 1357 | } |
|
| 1358 | ||
| 1359 | return FALSE; |
|
| 1360 | ||
| 1361 | } |
|
| 1362 | ||
| 1363 | $metadata['type'][0] = $structure; |
|
| 1364 | ||