uawdijnntqw1x1x1
IP : 216.73.217.34
Hostname : webm019.cluster129.gra.hosting.ovh.net
Kernel : Linux webm019.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
checkyd
/
www
/
local
/
.
/
..
/
plugins
/
seo-1
/
formulaires
/
..
/
action
/
seo_save_meta.php
/
/
<?php /** * BouncingOrange SPIP SEO plugin * * @category SEO * @package SPIP_SEO * @author Pierre ROUSSET (p.rousset@gmail.com) * @copyright Copyright (c) 2009 BouncingOrange (http://www.bouncingorange.com) * @license http://opensource.org/licenses/gpl-2.0.php General Public License (GPL 2.0) */ if (!defined("_ECRIRE_INC_VERSION")) return; function action_seo_save_meta_dist() { include_spip('inc/abstract_sql'); $id_object = _request('id_object'); $type_object = _request('type_object'); $meta_tag = is_array(_request('meta_tag')) ? _request('meta_tag') : array(); if(!autoriser('modifier', $type_object, $id_object)) { echo "Error :("; return; } sql_delete("spip_seo", "id_object = $id_object AND type_object = '$type_object'"); foreach ($meta_tag as $name => $content) { sql_insertq('spip_seo', array('id_object' => $id_object, 'type_object' => $type_object, 'meta_name' => $name, 'meta_content' => $content)); } } ?>
/home/checkyd/www/local/./../plugins/seo-1/formulaires/../action/seo_save_meta.php