0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
global
/
modules
/
Users
/
[
Home
]
File: TemplateMerge.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'); require('config.inc.php'); global $default_charset; if(isset($_REQUEST['templateid']) && $_REQUEST['templateid'] !='') { $templatedetails = getTemplateDetails($_REQUEST['templateid']); $unsubscribe_url = $site_URL."/unsubscribe.php?data=".urlencode(convert_uuencode($_SESSION['campaign_id']."|".date("h:ia") )); $templatedetails[1] = str_replace("##UNSUBLINK##",$unsubscribe_url,$templatedetails[1]); } ?> <form name="frmrepstr"> <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 language="javascript"> window.opener.document.getElementById('subject').value = window.document.frmrepstr.subject.value window.opener.document.getElementById('description').value = window.document.frmrepstr.repstr.value window.opener.oFCKeditor.ReplaceTextarea(); window.close(); </script>