0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-export_wiki_pages.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-export_wiki_pages.php,v 1.7.2.2 2005/02/03 21:28:28 sylvieg 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. // Initialization require_once ('tiki-setup.php'); include_once ("lib/ziplib.php"); include_once ('lib/wiki/exportlib.php'); if ($tiki_p_admin_wiki != 'y') { $smarty->assign('msg', tra("Permission denied")); $smarty->display("error.tpl"); die; } if (!isset($_REQUEST["page"])) { $exportlib->MakeWikiZip(); header ("location: dump/export.tar"); } else { if (isset($_REQUEST["all"])) $all = 0; else $all = 1; $data = $exportlib->export_wiki_page($_REQUEST["page"], $all); $page = $_REQUEST["page"]; header ("Content-type: application/unknown"); header ("Content-Disposition: inline; filename=$page"); echo $data; } ?>