12 lines
194 B
PHP
12 lines
194 B
PHP
<?php
|
|
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
function smarty_modifier_text2url($string) {
|
|
return Utils::TextToUrl($string);
|
|
}
|
|
|
|
?>
|