From 0d8de282b239e663d5c4dacef7afade846e5cb23 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 19 Jun 2008 10:11:07 -0400 Subject: copy args function darcs-hash:20080619141107-84dde-a5e018fdac3f72eee13b3093fbd871299cda0739.gz --- lib/util.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib/util.php') diff --git a/lib/util.php b/lib/util.php index eb019ac7e..a4c30cbe4 100644 --- a/lib/util.php +++ b/lib/util.php @@ -887,3 +887,12 @@ function common_config($main, $sub) { global $config; return $config[$main][$sub]; } + +function common_copy_args($from) { + $to = array(); + $strip = get_magic_quotes_gpc(); + foreach ($from as $k => $v) { + $to[$k] = ($strip) ? stripslashes($v) : $v; + } + return $to; +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf