0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: block.ajax_href.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_block_ajax_href($params, $content, &$smarty, $repeat) { global $prefs, $user; if ( $repeat ) return; $url = $content; $template = $params['template']; $htmlelement = $params['htmlelement']; $last_user = htmlspecialchars($user); if ( $prefs['feature_ajax'] != 'y' || $prefs['javascript_enabled'] == 'n' ) { return " href=\"$url\" "; } else { $max_tikitabs = 50; // Same value as in header.tpl, <body> tag onload's param return " href=\"#main\" onclick=\"window.scrollTo(0,0);loadComponent('$url','$template','$htmlelement',$max_tikitabs,'$last_user');return false;\" "; } } ?>