blob: dca02d1bd65f4dd8af23089e7589fe610e9cb4be (
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);
}
?>
|