20 lines
414 B
PHP
20 lines
414 B
PHP
<?php return
|
|
[
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| URL Change Chars
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| It is used to filter the data coming from the URL.
|
|
|
|
|
| Example: 'old_chars' => 'change_new_chars'
|
|
|
|
|
*/
|
|
|
|
'urlChangeChars' =>
|
|
[
|
|
'<' => '',
|
|
'>' => ''
|
|
]
|
|
];
|