35 lines
1.5 KiB
PHP
35 lines
1.5 KiB
PHP
<?php
|
|
/*********************************************************************************
|
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*
|
|
********************************************************************************/
|
|
require_once('include/utils/CommonUtils.php');
|
|
global $default_charset;
|
|
|
|
if(isset($_REQUEST['templateid']) && $_REQUEST['templateid'] !='')
|
|
{
|
|
$templatedetails = getTemplateDetails($_REQUEST['templateid']);
|
|
}
|
|
?>
|
|
<form name="frmrepstr" onsubmit="VtigerJS_DialogBox.block();">
|
|
<input type="hidden" name="subject" value="<?php echo $templatedetails[2];?>"></input>
|
|
<textarea name="repstr" style="visibility:hidden">
|
|
<?php echo htmlentities($templatedetails[1], ENT_NOQUOTES, $default_charset); ?>
|
|
</textarea>
|
|
</form>
|
|
<script type="text/javascript">
|
|
//my changes
|
|
if(typeof window.opener.document.getElementById('subject') != 'undefined' &&
|
|
window.opener.document.getElementById('subject') != null){
|
|
window.opener.document.getElementById('subject').value = window.document.frmrepstr.subject.value;
|
|
window.opener.document.getElementById('description').value = window.document.frmrepstr.repstr.value;
|
|
window.opener.oCKeditor.setData(window.document.frmrepstr.repstr.value);
|
|
}
|
|
window.close();
|
|
</script>
|