mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 21:24:46 +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);
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|