mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
18 lines
612 B
PHP
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"); |