mirror of
https://github.com/moodle/moodle.git
synced 2025-03-10 02:40:10 +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 upper modifier plugin
|
|
*
|
|
* Type: modifier<br />
|
|
* Name: upper<br />
|
|
* Purpose: convert string to uppercase
|
|
* @link http://smarty.php.net/manual/en/language.modifier.upper.php
|
|
* upper (Smarty online manual)
|
|
* @param string
|
|
* @return string
|
|
*/
|
|
function smarty_modifier_upper($string)
|
|
{
|
|
return strtoupper($string);
|
|
}
|
|
|
|
?>
|