Merged revision(s) 26926 from trunk:

bug 3033: allow HTML in photo names from Batch Manager

git-svn-id: http://piwigo.org/svn/branches/2.6@26927 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
mistic100 2014-01-23 19:17:39 +00:00
parent c253398f40
commit a435ff38ed

View file

@ -67,14 +67,6 @@ SELECT id, date_creation
$data['author'] = $_POST['author-'.$row['id']];
$data['level'] = $_POST['level-'.$row['id']];
foreach (array('name', 'level') as $field)
{
if (!empty($_POST[$field.'-'.$row['id']]))
{
$data[$field] = strip_tags($_POST[$field.'-'.$row['id']]);
}
}
if ($conf['allow_html_descriptions'])
{
$data['comment'] = @$_POST['description-'.$row['id']];