0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: function.xajax_response.php
<?php //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; } function smarty_function_xajax_response($params, &$smarty) { $return = ''; if ( isset($params['content']) && $params['content'] != '' ) { global $smarty, $ajaxlib; include_once('lib/ajax/xajax.inc.php'); if ( $ajaxlib && $ajaxlib->canProcessRequests() ) { $objResponse = new xajaxResponse(); $objResponse->assign('tiki-center', 'innerHTML', $params['content']); $return = $objResponse->getOutput(); unset($objResponse); } } return $return; } ?>