mirror of
https://github.com/friendica/friendica
synced 2025-04-26 09:50:15 +00:00
The boot.php had been cleared of most functions
This commit is contained in:
parent
4989d1fa99
commit
63da4a75e9
37 changed files with 279 additions and 401 deletions
|
@ -448,7 +448,7 @@ class Item
|
|||
// We use "microtime" to keep the arrival order and "mt_rand" to avoid duplicates
|
||||
$file = 'item-' . round(microtime(true) * 10000) . '-' . mt_rand() . '.msg';
|
||||
|
||||
$spoolpath = get_spoolpath();
|
||||
$spoolpath = System::getSpoolPath();
|
||||
if ($spoolpath != "") {
|
||||
$spool = $spoolpath . '/' . $file;
|
||||
|
||||
|
|
|
@ -951,9 +951,6 @@ class Photo
|
|||
@unlink($src);
|
||||
|
||||
$max_length = DI::config()->get('system', 'max_image_length');
|
||||
if (!$max_length) {
|
||||
$max_length = MAX_IMAGE_LENGTH;
|
||||
}
|
||||
if ($max_length > 0) {
|
||||
$Image->scaleDown($max_length);
|
||||
$filesize = strlen($Image->asString());
|
||||
|
|
|
@ -706,7 +706,7 @@ class User
|
|||
{
|
||||
$cache = new CacheItemPool();
|
||||
$cache->changeConfig([
|
||||
'cacheDirectory' => get_temppath() . '/password-exposed-cache/',
|
||||
'cacheDirectory' => System::getTempPath() . '/password-exposed-cache/',
|
||||
]);
|
||||
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue