2012-11-08 Sancho Lerena <slerena@artica.es>
* include/functions_config.php: Fixed a XSS in login :-O. Thanks to gobejishvili for reporting. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7140 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
4522dce0be
commit
8230679022
|
@ -1,3 +1,8 @@
|
||||||
|
2012-11-08 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
|
* include/functions_config.php: Fixed a XSS in login :-O. Thanks
|
||||||
|
to gobejishvili for reporting.
|
||||||
|
|
||||||
2012-11-08 Miguel de Dios <miguel.dedios@artica.es>
|
2012-11-08 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* operation/events/events.php, include/functions_tags.php: cleaned
|
* operation/events/events.php, include/functions_tags.php: cleaned
|
||||||
|
|
|
@ -672,7 +672,7 @@ function config_process_config () {
|
||||||
if (isset($config['id_user']))
|
if (isset($config['id_user']))
|
||||||
$relative_path = enterprise_hook('skins_set_image_skin_path',array($config['id_user']));
|
$relative_path = enterprise_hook('skins_set_image_skin_path',array($config['id_user']));
|
||||||
else
|
else
|
||||||
$relative_path = enterprise_hook('skins_set_image_skin_path',array($_POST['nick']));
|
$relative_path = enterprise_hook('skins_set_image_skin_path',array(get_parameter('nick')));
|
||||||
$config['relative_path'] = $relative_path;
|
$config['relative_path'] = $relative_path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue