- modules/fotolab updated imagej to current version & some cod fixes to make it work
[care2x.git] / Care2007 / include / StripSlashes.php
blob9298d787f641e19fcde6e480bb41bc2927e2daae
1 <?php
2 //gjergji : fix for magic quotes on on windows
3 function strip_magic_quotes($arr) {
4 foreach ($arr as $k => $v) {
5 if (is_array($v))
6 { $arr[$k] = strip_magic_quotes($v); }
7 else
8 { $arr[$k] = stripslashes($v); }
10 return $arr;