<?php
/*******************************************************
** IntraMessenger - server **
** **
** Copyright: (C) 2006 - 2011 THeUDS **
** Web: http://www.theuds.com **
** http://www.intramessenger.net **
** Licence : GPL (GNU Public License) **
** http://opensource.org/licenses/gpl-license.php **
*******************************************************/
/*******************************************************
** This file is part of IntraMessenger-server **
** **
** IntraMessenger is a free software. **
** IntraMessenger is distributed in the hope that **
** it will be useful, but WITHOUT ANY WARRANTY. **
*******************************************************/
//
if (isset($_POST['id_shout_max'])) $id_shout_max = intval($_POST['id_shout_max']); else $id_shout_max = 0;
if (isset($_POST['id_grp'])) $id_grp = intval($_POST['id_grp']); else $id_grp = 0;
if (isset($_POST['lang'])) $lang = $_POST['lang']; else $lang = "";
//
//
$url = "list_shoutbox.php?lang=" . $lang . "&id_grp=" . $id_grp . "&";
$repertoire = getcwd() . "/";
if ( (substr_count($repertoire, "/admin_demo/") == 0) and (substr_count($repertoire, "\admin_demo/") == 0) )
{
if ( ($id_shout_max > 0) and (!preg_match("#[^0-9]#", $id_shout_max)) )
{
define('INTRAMESSENGER',true);
//
require ("../common/sql.inc.php");
//
$requete = " update " . $PREFIX_IM_TABLE . "SBX_SHOUTBOX ";
$requete .= " set SBX_DISPLAY = 2 ";
$requete .= " WHERE ID_SHOUT <= " . $id_shout_max;
$requete .= " and SBX_DISPLAY = 0 ";
$result = mysql_query($requete);
if (!$result) error_sql_log("[ERR-V3a]", $requete);
//
require ("../common/config/config.inc.php");
if (_BOOKMARKS_PUBLIC != "")
{
require ("../common/functions.inc.php");
require ("lang.inc.php"); // pour shoutbox_update_rss !
require ("../common/shoutbox.inc.php");
//
shoutbox_update_rss($id_grp);
}
//
mysql_close($id_connect);
}
//
header("location:" . $url);
}
else
require("redirect_acp_demo.inc.php");
?>