mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 01:03:31 +02:00
bug 1329 fixed: add a check_input_parameter function to prevent hacking
attempts. git-svn-id: http://piwigo.org/svn/branches/2.0@4495 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -43,6 +43,12 @@ check_status(ACCESS_ADMINISTRATOR);
|
||||
// | deletion form submission |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
// the $_POST['selection'] was already checked in element_set.php
|
||||
check_input_parameter('add_tags', @$_POST['add_tags'], true, PATTERN_ID);
|
||||
check_input_parameter('del_tags', @$_POST['del_tags'], true, PATTERN_ID);
|
||||
check_input_parameter('associate', @$_POST['associate'], false, PATTERN_ID);
|
||||
check_input_parameter('dissociate', @$_POST['dissociate'], false, PATTERN_ID);
|
||||
|
||||
if (isset($_POST['delete']))
|
||||
{
|
||||
if (isset($_POST['confirm_deletion']) and 1 == $_POST['confirm_deletion'])
|
||||
|
||||
Reference in New Issue
Block a user