mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
add stripslashes if needed
This commit is contained in:
parent
bfb56ec1de
commit
0086593cb6
@ -23,6 +23,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'])
|
||||
{
|
||||
case 'admin':
|
||||
|
Loading…
Reference in New Issue
Block a user