repo.or.cz
/
care2x.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- modules/fotolab updated imagej to current version & some cod fixes to make it work
[care2x.git]
/
Care2007
/
include
/
StripSlashes.php
blob
9298d787f641e19fcde6e480bb41bc2927e2daae
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
); }
9
}
10
return
$arr
;
11
}
12
?
>