Files
zurawik.pl/core/plugins/Smarty/modifier.text2title.php
2026-05-15 18:33:51 +02:00

12 lines
198 B
PHP

<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
function smarty_modifier_text2title($string) {
return Utils::TextToTitle($string);
}
?>