0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-admin_include_blogs.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-admin_include_blogs.php,v 1.8.2.3 2006/07/05 15:00:09 toggg Exp $ // Copyright (c) 2002-2005, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } if (isset($_REQUEST["blogset"]) && isset($_REQUEST["homeBlog"])) { check_ticket('admin-inc-blogs'); $tikilib->set_preference("home_blog", $_REQUEST["homeBlog"]); $smarty->assign('home_blog', $_REQUEST["homeBlog"]); } if (isset($_REQUEST["blogfeatures"])) { check_ticket('admin-inc-blogs'); $pref_toggles = array( "feature_blog_rankings", "blog_spellcheck", "feature_blog_comments", "feature_blogposts_comments", "feature_blogposts_pings" ); foreach ($pref_toggles as $toggle) { simple_set_toggle ($toggle); } simple_set_value ("blog_list_order"); simple_set_value ("blog_list_user"); } if (isset($_REQUEST['bloglistconf'])) { check_ticket('admin-inc-blogs'); $pref_toggles = array( "blog_list_title", "blog_list_description", "blog_list_activity", "blog_list_visits", "blog_list_posts", "blog_list_created", "blog_list_lastmodif" ); foreach ($pref_toggles as $toggle) { simple_set_toggle ($toggle); } simple_set_value ("blog_list_user"); } if (isset($_REQUEST["blogcomprefs"])) { check_ticket('admin-inc-blogs'); simple_set_value ("blog_comments_per_page"); simple_set_value ("blog_comments_default_ordering"); } ask_ticket('admin-inc-blogs'); $blogs = $tikilib->list_blogs(0, -1, 'created_desc', ''); $smarty->assign_by_ref('blogs', $blogs["data"]); ?>