*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
- * See update_profile.php for documentation
*/
namespace Friendica\Module\Item;
use Friendica\Content\Widget;
use Psr\Log\LoggerInterface;
+/**
+ * Controller to display one item and its conversation
+ */
class Display extends BaseModule
{
/** @var App\Page */
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
- * See update_profile.php for documentation
*/
namespace Friendica\Module\Item;
throw new HTTPException\UnauthorizedException($this->t('Access denied.'));
}
- $profileUid = $request['p'] ?? 0;
- $force = $request['force'] ?? false;
+ $profileUid = $request['p'] ?? 0;
+ $force = $request['force'] ?? false;
$uriId = $request['uri_id'] ?? 0;
if (empty($uriId)) {
throw new HTTPException\NotFoundException($this->t('The requested item doesn\'t exist or has been deleted.'));
}
- $this->app->setProfileOwner($item['uid'] ?? $profileUid);
+ $this->app->setProfileOwner($item['uid'] ?: $profileUid);
$parentUriId = $item['parent-uri-id'];
if (empty($force)) {