0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
[
Home
]
File: tiki-notepad_get.php
<?php // $Id: /cvsroot/tikiwiki/tiki/tiki-notepad_get.php,v 1.11 2007-10-12 07:55:29 nyloth Exp $ // Copyright (c) 2002-2007, 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. require_once ('tiki-setup.php'); include_once ('lib/notepad/notepadlib.php'); if ($prefs['feature_notepad'] != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_notepad"); $smarty->display("error.tpl"); die; } if (!$user) { $smarty->assign('msg', tra("Must be logged to use this feature")); $smarty->display("error.tpl"); die; } if ($tiki_p_notepad != 'y') { $smarty->assign('errortype', 401); $smarty->assign('msg', tra("Permission denied to use this feature")); $smarty->display("error.tpl"); die; } if (!isset($_REQUEST["noteId"])) { $smarty->assign('msg', tra("No note indicated")); $smarty->display("error.tpl"); die; } if (isset($_REQUEST["save"])) { $disposition = "attachment"; } else { $disposition = "inline"; } $info = $notepadlib->get_note($user, $_REQUEST["noteId"]); header ("Content-type: text/plain"); header ("Content-Disposition: $disposition; filename=note_".urlencode($user).'_'.$_REQUEST["noteId"].".txt;"); echo $info['data']; ?>