mirror of
https://github.com/friendica/friendica
synced 2025-01-25 03:39:46 +00:00
4342e79f15
Fixes #14375 Add error handling for undefined variables and replace deprecated functions. * **mod/photos.php** - Add loading message to the photo comment form. * **mod/update_contact.php** - Handle undefined `$_GET['item']` variable. * **mod/update_notes.php** - Handle undefined `$_GET['p']` variable. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/friendica/friendica/issues/14375?shareId=XXXX-XXXX-XXXX-XXXX).
33 lines
940 B
PHP
33 lines
940 B
PHP
<?php
|
|
/**
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*
|
|
* See update_profile.php for documentation
|
|
*
|
|
*/
|
|
|
|
use Friendica\App;
|
|
use Friendica\Core\System;
|
|
use Friendica\Database\DBA;
|
|
use Friendica\DI;
|
|
use Friendica\Model\Post;
|
|
use Friendica\Model\Contact;
|
|
|
|
function update_contact_content(App $a)
|
|
{
|
|
if (!empty(DI::args()->get(1)) && !empty($_GET['force'])) {
|
|
$contact = DBA::selectFirst('account-user-view', ['pid', 'deleted'], ['id' => DI::args()->get(1)]);
|
|
if (DBA::isResult($contact) && empty($contact['deleted'])) {
|
|
DI::page()['aside'] = '';
|
|
|
|
$item = Post::selectFirst(['parent'], ['id' => $_GET['item'] ?? 0]);
|
|
|
|
$text = Contact::getThreadsFromId($contact['pid'], DI::userSession()->getLocalUserId(), true, $item['parent'] ?? 0, $_GET['last_received'] ?? '');
|
|
}
|
|
}
|
|
|
|
System::htmlUpdateExit($text ?? '');
|
|
}
|