0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: modifier.username.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_modifier_username($user, $login_fallback = true, $check_user_show_realnames = true) { global $userlib, $prefs; if ( $prefs['user_show_realnames'] == 'y' || ! $check_user_show_realnames ) { $details = $userlib->get_user_details($user); $return = $details['info']['realName']; unset($details); if ( $return == '' ) $return = $login_fallback ? $user : 'Anonymous'; } else $return = $user; return $return; } ?>