⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.97
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-horde
/
kronolith
/
Edit File: attend.php
<?php /** * Copyright 2005-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.horde.org/licenses/gpl. * * @author Jan Schneider <jan@horde.org> * @package Kronolith */ require_once __DIR__ . '/lib/Application.php'; Horde_Registry::appInit('kronolith', array('authentication' => 'none')); $cal = Horde_Util::getFormData('c'); $id = Horde_Util::getFormData('e'); $uid = Horde_Util::getFormData('i'); $user = Horde_Util::getFormData('u'); switch (Horde_Util::getFormData('a')) { case 'accept': $action = Kronolith::RESPONSE_ACCEPTED; $msg = _("You have successfully accepted attendence to this event."); break; case 'decline': $action = Kronolith::RESPONSE_DECLINED; $msg = _("You have successfully declined attendence to this event."); break; case 'tentative': $action = Kronolith::RESPONSE_TENTATIVE; $msg = _("You have tentatively accepted attendence to this event."); break; default: $action = Kronolith::RESPONSE_NONE; $msg = ''; break; } if (((empty($cal) || empty($id)) && empty($uid)) || empty($user)) { $notification->push(_("The request was incomplete. Some parameters that are necessary to accept or decline an event are missing."), 'horde.error', array('sticky')); $title = ''; } else { try { if (empty($uid)) { $event = Kronolith::getDriver(null, $cal)->getEvent($id); } else { $event = Kronolith::getDriver()->getByUID($uid); } if (!$event->hasAttendee($user)) { $notification->push(_("You are not an attendee of the specified event."), 'horde.error', array('sticky')); $title = $event->getTitle(); } else { $event->addAttendee($user, Kronolith::PART_IGNORE, $action); try { $event->save(); if (!empty($msg)) { $notification->push($msg, 'horde.success', array('sticky')); } } catch (Exception $e) { $notification->push($e, 'horde.error', array('sticky')); } $title = $event->getTitle(); } } catch (Exception $e) { $notification->push($e, 'horde.error', array('sticky')); $title = ''; } } $page_output->topbar = $page_output->sidebar = false; $page_output->header(array( 'title' => $title )); require KRONOLITH_TEMPLATES . '/javascript_defs.php'; ?> <div id="menu"><h1> <?php echo htmlspecialchars($title) ?></h1></div> <?php $notification->notify(array('listeners' => 'status')); $page_output->footer();
Simpan