Blame view

libs/SMARTY/plugins/modifier.stripslashes.php 90 Bytes
42868d70   andryeyev   Создал GIT
1
2
3
4
5
  <?php
  function smarty_modifier_stripslashes($string){
  return stripslashes ($string);
  }
  ?>