mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
9 lines
112 B
PHP
9 lines
112 B
PHP
<?php
|
|
// alias for php built-in md5 hash
|
|
function smarty_modifier_hash($string)
|
|
{
|
|
return md5($string);
|
|
}
|
|
|
|
?>
|