vtenext/modules/ModComments/MassEditSave.php
2021-04-28 20:10:26 +02:00

18 lines
612 B
PHP

<?php
/*************************************
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
* SPDX-License-Identifier: AGPL-3.0-only
************************************/
global $currentModule, $rstart;
// MassEdit is not enabled for this module!
$return_module = vtlib_purify($_REQUEST['massedit_module']);
$return_action = 'index';
if(isset($_REQUEST['start']) && $_REQUEST['start']!=''){
$rstart = "&start=".vtlib_purify($_REQUEST['start']);
}
$parenttab = getParentTab();
header("Location: index.php?module=$return_module&action=$return_action&parenttab=$parenttab$rstart");