mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
add stripslashes if needed
This commit is contained in:
parent
bfb56ec1de
commit
0086593cb6
@ -22,6 +22,11 @@
|
||||
{
|
||||
$GLOBALS['phpgw']->redirect_link('/index.php');
|
||||
}
|
||||
|
||||
if(get_magic_quotes_gpc() && is_array($_POST['newsettings']))
|
||||
{
|
||||
$_POST['newsettings'] = array_map("stripslashes", $_POST['newsettings']);
|
||||
}
|
||||
|
||||
switch($_GET['appname'])
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user