mirror of
https://github.com/moodle/moodle.git
synced 2025-02-24 12:03:12 +01:00
- fixed (hopefully) all <img> tags - global replace on <br> to <br /> - & in URLs - got the forum module XHTML compliant Julian Sedding
26 lines
437 B
PHP
26 lines
437 B
PHP
<?php
|
|
/**
|
|
* Smarty plugin
|
|
* @package Smarty
|
|
* @subpackage plugins
|
|
*/
|
|
|
|
|
|
/**
|
|
* Smarty lower modifier plugin
|
|
*
|
|
* Type: modifier<br />
|
|
* Name: lower<br />
|
|
* Purpose: convert string to lowercase
|
|
* @link http://smarty.php.net/manual/en/language.modifier.lower.php
|
|
* lower (Smarty online manual)
|
|
* @param string
|
|
* @return string
|
|
*/
|
|
function smarty_modifier_lower($string)
|
|
{
|
|
return strtolower($string);
|
|
}
|
|
|
|
?>
|