You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
<?php |
|
|
|
/***************************************************************************\ |
|
* SPIP, Systeme de publication pour l'internet * |
|
* * |
|
* Copyright (c) 2001-2020 * |
|
* Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James * |
|
* * |
|
* Ce programme est un logiciel libre distribue sous licence GNU/GPL. * |
|
* Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. * |
|
\***************************************************************************/ |
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) { |
|
return; |
|
} |
|
|
|
|
|
/** |
|
* @param int $id_message |
|
* @return void |
|
*/ |
|
function action_envoyer_message_dist($id_message = null) { |
|
|
|
if (is_null($id_message)) { |
|
$securiser_action = charger_fonction('securiser_action', 'inc'); |
|
$id_message = $securiser_action(); |
|
} |
|
|
|
include_spip('inc/autoriser'); |
|
if (intval($id_message) |
|
and $type = sql_getfetsel('type', 'spip_messages', 'id_message=' . intval($id_message)) |
|
and autoriser('envoyermessage', $type, $id_message) |
|
) { |
|
include_spip('action/editer_objet'); |
|
objet_modifier('message', $id_message, array('statut' => 'publie')); |
|
} |
|
}
|
|
|