An error occurred while loading the file. Please try again.
-
Côme Chilliet authored
There was a logic problem when calling readPost/update closes the dialog, the edit_finish POST value was read twice - by the opened dialog and by the copypasting logic. issue #6072
Unverified59c8af3b
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011-2017 FusionDirectory
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*!
* \file class_CopyPasteHandler.inc
* Source code for class CopyPasteHandle
*/
/*!
* \brief This class contains all function to copy and paste
*/
class CopyPasteHandler implements FusionDirectoryDialog
{
var $current = FALSE;
/*!
* \brief This array contains all dns of the currently copied objects
*/
protected $objectList = [];
/*!
* \brief This array contains all remaining objects to paste
*/
protected $queue = [];
/*!
* \brief The dn of the last edited object
*/
protected $lastdn = '';
protected $disallowed_objects = [];
protected $objects_to_fix = [];
protected $clean_objects = [];
protected $require_update = FALSE;
/*!
* \brief Create CP handler
*/
function __construct ()
{
}
/*!
* \brief Entry entry to Copy & Paste queue.
* A Queue entry is represented as follows.
* array['method'] - 'copy' or 'cut'
* array['dn'] - the dn of the object added to the queue
* array['type'] - Object type
*
* \param String $dn The dn of the object added to the queue
*
* \param String $action Copy or Cut
*