0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: function.helplink.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_helplink($params, &$smarty) { extract($params); // Param = zone if(empty($page)) { $smarty->trigger_error("assign: missing page parameter"); return; } print("<a title='help' href='#' onclick='javascript:window.open(\"tiki-index_p.php?page=$page\",\"\",\"menubar=no,scrollbars=yes,resizable=yes,height=600,width=500\");'><img border='0' src='img/icons/help.gif' alt='".tra("help")."' /></a>"); } /* vim: set expandtab: */ ?>