blob: d2d5e813bd7fdbe791a7cd8b77871f156cb104ba (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | <?php
/** @package Smarty
* @subpackage plugins */
/**
 * Smarty plugin
 * -------------------------------------------------------------
 * Type:     modifier
 * Name:     rawurlencode
 * Purpose:  encode string for use in PDFdefaultConverter TOC
 * -------------------------------------------------------------
 */
function smarty_modifier_rawurlencode($string)
{
	return rawurlencode($string);
}
?>
 |