1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
--- ./deadlock/admin/bulkemail.php.orig Wed Aug 2 20:28:00 2006
+++ deadlock/admin/bulkemail.php Thu Oct 11 15:23:48 2007
@@ -174,13 +174,13 @@
<table width="91%" height="107" border="0" align="center">
<tr>
<td width="13%" height="20"><span class="style5">Subject:</span></td>
- <td width="87%"><span class="style2"><?=$_POST['subject']?></span></td>
+ <td width="87%"><span class="style2"><?php echo $_POST['subject']?></span></td>
</tr>
<tr>
<td height="21" colspan="2"><span class="style5">Message:</span></td>
</tr>
<tr>
- <td colspan="2"><div class="style2"><?=nl2br(htmlentities($_POST['message']."\n\n".$_POST['footer']))?></div></td>
+ <td colspan="2"><div class="style2"><?php echo nl2br(htmlentities($_POST['message']."\n\n".$_POST['footer']))?></div></td>
</tr>
</table>
@@ -189,7 +189,7 @@
</tr>
<tr>
- <td height="21" colspan="2" class="footercell"><div align="center"><?show_footer($software_signature)?></div></td>
+ <td height="21" colspan="2" class="footercell"><div align="center"><?phpshow_footer($software_signature)?></div></td>
</tr>
</table>
</body>
@@ -211,7 +211,7 @@
***********************************************/
</script>
<script type="text/javascript">
-<? if((isset($_GET['type']) && $_GET['type']=='html') && isset($_GET['editor'])): ?>
+<?php if((isset($_GET['type']) && $_GET['type']=='html') && isset($_GET['editor'])): ?>
function insertAtCursor(myField, myValue){
// Get the editor instance that we want to interact with.
var oEditor = FCKeditorAPI.GetInstance('message') ;
@@ -225,7 +225,7 @@
else
alert( 'You must be on WYSIWYG mode!' ) ;
}
-<? else: ?>
+<?php else: ?>
function insertAtCursor(myField, myValue) {
//IE support
if (document.selection) {
@@ -245,7 +245,7 @@
}
myField.focus();
}
-<? endif; ?>
+<?php endif; ?>
function changeeditor(){
if(document.mailer.enableeditor.checked == true){
window.location = './bulkemail.php?type=html&editor=1';
@@ -279,7 +279,7 @@
<strong>Codes:</strong> <%FirstName%>, <%LastName%>, <%Email%>, <%Username%>, <%RegistrationDate%>, <%RemovalURL%> </td>
</tr>
<tr>
- <td height="275" colspan="2"><? if (!empty($errors)){ ?><table width="95%" height="24" border="0" align="center">
+ <td height="275" colspan="2"><?php if (!empty($errors)){ ?><table width="95%" height="24" border="0" align="center">
<tr>
<td height="20">
<div class="style9"><ul>
@@ -291,45 +291,45 @@
</ul></div></td>
</tr>
</table>
- <? } else { print '<br />'; } ?>
- <form action="<?=$_SERVER['PHP_SELF']?>" method="post" name="mailer">
+ <?php } else { print '<br />'; } ?>
+ <form action="<?php echo $_SERVER['PHP_SELF']?>" method="post" name="mailer">
<table width="100%" border="0" align="center">
<tr>
<td class="style5">Send To<a href="#" class="hintanchor" onmouseover="showhint('Please specify who you would like this email to be sent to. You may either select "All Users" or a specific user.', this, event, '150px')">[?]</a>:</td>
<td><select name="to">
- <option value="//all//"<?=$select_default?>>All Users</option>
- <?=generate_user_menu($mysql['prefix'],$selected_user)?>
+ <option value="//all//"<?php echo $select_default?>>All Users</option>
+ <?php echo generate_user_menu($mysql['prefix'],$selected_user)?>
</select></td>
</tr>
<tr>
<td width="45%" class="style5">Email Subject<a href="#" class="hintanchor" onmouseover="showhint('Please enter the subject of the email you wish to send.', this, event, '150px')">[?]</a>:</td>
- <td width="55%"><input name="subject" type="text" id="subject"<? if(isset($_POST['subject'])) print ' value="'.$_POST['subject'].'"'; ?> /></td>
+ <td width="55%"><input name="subject" type="text" id="subject"<?php if(isset($_POST['subject'])) print ' value="'.$_POST['subject'].'"'; ?> /></td>
</tr>
<tr>
<td height="22" class="style5">Email Type<a href="#" class="hintanchor" onmouseover="showhint('If you want your email to be in HTML, select HTML, otherwise select Plain Text. Changing this will clear the whole form.', this, event, '150px')">[?]</a>:</td>
<td height="22" class="style2">
- <label><input name="type" type="radio" onclick="window.location='<?=$textlocation?>'" value="text"<? if(!isset($_GET['type']) || $_GET['type']!='html') print ' checked="checked"'; ?> />Plain Text</label>
- <label><input name="type" type="radio" onclick="window.location='<?=$htmllocation?>'" value="html"<? if(isset($_GET['type']) && $_GET['type']=='html') print ' checked="checked"'; ?> />HTML</label>
+ <label><input name="type" type="radio" onclick="window.location='<?php echo $textlocation?>'" value="text"<?php if(!isset($_GET['type']) || $_GET['type']!='html') print ' checked="checked"'; ?> />Plain Text</label>
+ <label><input name="type" type="radio" onclick="window.location='<?php echo $htmllocation?>'" value="html"<?php if(isset($_GET['type']) && $_GET['type']=='html') print ' checked="checked"'; ?> />HTML</label>
</td>
</tr>
- <? if(isset($_GET['type']) && $_GET['type']=='html'): ?>
+ <?php if(isset($_GET['type']) && $_GET['type']=='html'): ?>
<tr>
<td height="22" class="style5">Enable HTML Editor:<a href="#" class="hintanchor" onmouseover="showhint('Select this box if you wish to enable the WYSIWYG editor. Changing the value here will reset the form.', this, event, '150px')">[?]</a>:</td>
<td height="22" class="style2">
- <input type="checkbox" id="enableeditor" name="enableeditor" value="1" onchange="changeeditor()"<? if(isset($_GET['editor'])) print ' checked="checked"'; ?> />
+ <input type="checkbox" id="enableeditor" name="enableeditor" value="1" onchange="changeeditor()"<?php if(isset($_GET['editor'])) print ' checked="checked"'; ?> />
</td>
</tr>
- <? endif; ?>
+ <?php endif; ?>
<tr>
<td height="22" colspan="2" class="style5">Email Message<a href="#" class="hintanchor" onmouseover="showhint('Please enter your message here. This will appear in the body of the email.', this, event, '150px')">[?]</a>: </td>
</tr>
- <? //if((!isset($_GET['type']) || $_GET['type']!='html') && (!isset($_GET['editor']))): ?><tr>
- <td height="19" colspan="2" class="style2 style13"><div align="center"><strong>Insert:</strong> <a href="javascript:insertAtCursor(document.mailer.message, '<?='<%FirstName%>'?>')">First Name</a> | <a href="javascript:insertAtCursor(document.mailer.message, '<?='<%LastName%>'?>')">Last Name</a> | <a href="javascript:insertAtCursor(document.mailer.message, '<?='<%Email%>'?>')">Email</a> | <a href="javascript:insertAtCursor(document.mailer.message, '<?='<%Username%>'?>')">Username</a> | <a href="javascript:insertAtCursor(document.mailer.message, '<?='<%RegistrationDate%>'?>')">Date Registered</a> |
- <a href="javascript:insertAtCursor(document.mailer.message, '<?='<%RemovalURL%>'?>')">Removal URL</a></div></td>
- </tr><? //endif; ?>
+ <?php //if((!isset($_GET['type']) || $_GET['type']!='html') && (!isset($_GET['editor']))): ?><tr>
+ <td height="19" colspan="2" class="style2 style13"><div align="center"><strong>Insert:</strong> <a href="javascript:insertAtCursor(document.mailer.message, '<?php echo '<%FirstName%>'?>')">First Name</a> | <a href="javascript:insertAtCursor(document.mailer.message, '<?php echo '<%LastName%>'?>')">Last Name</a> | <a href="javascript:insertAtCursor(document.mailer.message, '<?php echo '<%Email%>'?>')">Email</a> | <a href="javascript:insertAtCursor(document.mailer.message, '<?php echo '<%Username%>'?>')">Username</a> | <a href="javascript:insertAtCursor(document.mailer.message, '<?php echo '<%RegistrationDate%>'?>')">Date Registered</a> |
+ <a href="javascript:insertAtCursor(document.mailer.message, '<?php echo '<%RemovalURL%>'?>')">Removal URL</a></div></td>
+ </tr><?php //endif; ?>
<tr>
<td colspan="2" class="style2">
-<?
+<?php
if((isset($_GET['type']) && $_GET['type']=='html') && isset($_GET['editor'])):
$oFCKeditor = new FCKeditor('message') ;
$oFCKeditor->BasePath = '../fckeditor/';
@@ -339,27 +339,27 @@
$oFCKeditor->Create() ;
else:
?>
- <textarea name="message" cols="60" rows="10" id="message"><? if(isset($_POST['message'])) print $_POST['message']; ?></textarea>
-<? endif; ?>
+ <textarea name="message" cols="60" rows="10" id="message"><?php if(isset($_POST['message'])) print $_POST['message']; ?></textarea>
+<?php endif; ?>
</td>
</tr>
- <? if(!isset($_GET['type'])): ?>
+ <?php if(!isset($_GET['type'])): ?>
<tr>
<td height="20" colspan="2" class="style5">Footer<a href="#" class="hintanchor" onmouseover="showhint('Whatever is entered in this field will be directly attached to your message.', this, event, '150px')">[?]</a>:</td>
</tr>
<tr>
<td colspan="2"><span class="style2">
- <textarea name="footer" cols="60" rows="5" id="footer"><?=$config['bulk_email_footer']?></textarea>
+ <textarea name="footer" cols="60" rows="5" id="footer"><?php echo $config['bulk_email_footer']?></textarea>
</span></td>
</tr>
<tr>
- <? endif; ?>
+ <?php endif; ?>
<td> </td>
<td><div align="right">
<input type="hidden" name="submit" value="1" />
<input type="submit" value="Submit" />
- <input type="button" value="Reset" onclick="window.location='<?=$_SERVER['PHP_SELF']?>'" />
+ <input type="button" value="Reset" onclick="window.location='<?php echo $_SERVER['PHP_SELF']?>'" />
</div></td>
</tr>
</table>
@@ -368,7 +368,7 @@
</tr>
<tr>
- <td height="21" colspan="2" class="footercell"><div align="center"><?show_footer($software_signature)?></div></td>
+ <td height="21" colspan="2" class="footercell"><div align="center"><?phpshow_footer($software_signature)?></div></td>
</tr>
</table>
</body>
|