mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
12 lines
639 B
PHP
12 lines
639 B
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
/* crmv@42801 */
|
|
$record = $_REQUEST['record'];
|
|
?>
|
|
<frameset rows="99, *"> <!-- crmv@107654 -->
|
|
<frame name="top_frame" src="index.php?module=Messages&action=MessagesAjax&file=PrintHeader&record=<?php echo $record; ?>" scrolling="no" noresize="noresize" frameborder="0" />
|
|
<frame name="bottom_frame" src="index.php?module=Messages&action=MessagesAjax&file=DetailView&mode=Print&record=<?php echo $record; ?>" frameborder="0" />
|
|
</frameset>
|