flatpress/fp-includes/smarty/plugins/function.ip_address.php
2007-10-30 10:30:07 +00:00

19 lines
221 B
PHP
Executable File

<?php
/**
* ip_address tag
*/
function smarty_function_ip_address($params, &$smarty) {
$address = $smarty->get_template_vars('ip-address');
return $address;
}
/* vim: set expandtab: */
?>