if (isset($_GET["deleted"])) { if ($_GET["deleted"]=="true") { echo "
/* =========================== gelato CMS development version http://www.gelatocms.com/ gelato CMS is a free software licensed under GPL (General public license) =========================== */ ?> require_once('../config.php'); include("../classes/user.class.php"); include("../classes/pagination.php"); include("../classes/gelato.class.php"); include("../classes/textile.class.php"); include("../classes/templates.class.php"); require_once("../classes/configuration.class.php"); $user = new user(); $tumble = new gelato(); $conf = new configuration(); $template = new plantillas("admin"); if ($user->isAdmin()) { if(isset($_POST["btnAdd"])) { unset($_POST["btnAdd"]); if ($_POST["type"]=="2") { // is Photo type if (isset($_POST["url"]) && $_POST["url"]!="") { $photoName = getFileName($_POST["url"]); if (!$tumble->savePhoto($_POST["url"])) { header("Location: ".$conf->urlGelato."/admin/index.php?photo=false"); die(); } $_POST["url"] = $conf->urlGelato."/uploads/".$photoName; } if ( move_uploaded_file( $_FILES['photo']['tmp_name'], "../uploads/".$_FILES['photo']['name'] ) ) { $_POST["url"] = $conf->urlGelato."/uploads/".$_FILES['photo']['name']; } unset($_POST["photo"]); unset($_POST["MAX_FILE_SIZE"]); } if ($_POST["type"]=="7") { // is MP3 type set_time_limit(300); $mp3Name = getFileName($_POST["url"]); if (!$tumble->saveMP3($_POST["url"])) { header("Location: ".$conf->urlGelato."/admin/index.php?mp3=false"); die(); } $_POST["url"] = $conf->urlGelato."/uploads/".$mp3Name; } if (get_magic_quotes_gpc()) { $_POST["title"] = htmlspecialchars(stripslashes($_POST["title"])); $_POST["description"] = htmlspecialchars(stripslashes($_POST["description"])); } else { $_POST["title"] = htmlspecialchars($_POST["title"]); $_POST["description"] = htmlspecialchars($_POST["description"]); } $_POST["title"] = strip_tags($_POST["title"]); $_POST["description"] = strip_tags($_POST["description"]); if (isset($_POST["id_post"])) { //$tumble->modifyPost($_POST, $_POST["id_post"]); } else { if ($tumble->addPost($_POST)) { header("Location: ".$conf->urlGelato."/admin/index.php?added=true"); die(); } else { header("Location: ".$conf->urlGelato."/admin/index.php?error=2&des=".$this->merror); die(); } } } ?>
if (isset($_GET["deleted"])) { if ($_GET["deleted"]=="true") { echo "