0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: function.rcontent.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_rcontent($params, &$smarty) { global $tikilib; global $dbTiki; include_once('lib/dcs/dcslib.php'); extract($params); // Param = zone if (empty($id)) { $smarty->trigger_error("assign: missing 'zone' parameter"); return; } $data = $dcslib->get_random_content($id); print($data); } /* vim: set expandtab: */ ?>