Changeset 6556
- Timestamp:
- 09/30/06 22:22:07 (2 years ago)
- Files:
-
- wp-email/trunk/email/email-image-verify.php (modified) (2 diffs)
- wp-email/trunk/email/email-manager.php (modified) (1 diff)
- wp-email/trunk/email/email-options.php (modified) (7 diffs)
- wp-email/trunk/email/email.php (modified) (1 diff)
- wp-email/trunk/email/wp-email-popup.php (modified) (3 diffs)
- wp-email/trunk/email/wp-email.php (modified) (3 diffs)
- wp-email/trunk/readme.html (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-email/trunk/email/email-image-verify.php
r6252 r6556 3 3 +----------------------------------------------------------------+ 4 4 | | 5 | WordPress 2.0 Plugin: WP-EMail 2.0 7|5 | WordPress 2.0 Plugin: WP-EMail 2.08 | 6 6 | Copyright (c) 2005 Lester "GaMerZ" Chan | 7 7 | | … … 31 31 32 32 ### Create The Image (60x22) 33 $image = imagecreate( 60, 22);33 $image = imagecreate(55, 15); 34 34 35 35 ### Use White As The Background Color 36 $bgColor = imagecolorallocate ($image, 255, 255, 255);36 $bgColor = imagecolorallocate($image, 255, 255, 255); 37 37 38 38 ### Use Black As The Text Color 39 $textColor = imagecolorallocate ($image, 0, 0, 0);39 $textColor = imagecolorallocate($image, 0, 0, 0); 40 40 41 41 ### Output The Code To The Image 42 imagestring ($image, 5, 5, 8, $rand, $textColor);42 imagestring($image, 5, 5, 1, $rand, $textColor); 43 43 44 44 ### Date In The Past wp-email/trunk/email/email-manager.php
r6407 r6556 3 3 +----------------------------------------------------------------+ 4 4 | | 5 | WordPress 2.0 Plugin: WP-EMail 2.0 7|5 | WordPress 2.0 Plugin: WP-EMail 2.08 | 6 6 | Copyright (c) 2005 Lester "GaMerZ" Chan | 7 7 | | wp-email/trunk/email/email-options.php
r6407 r6556 3 3 +----------------------------------------------------------------+ 4 4 | | 5 | WordPress 2.0 Plugin: WP-EMail 2.0 7|5 | WordPress 2.0 Plugin: WP-EMail 2.08 | 6 6 | Copyright (c) 2005 Lester "GaMerZ" Chan | 7 7 | | … … 243 243 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template'); ?>" onclick="javascript: email_default_templates('subject');" class="button" /> 244 244 </td> 245 <td align="left"><input type="text" id="email_template_subject" name="email_template_subject" value="<?php echo stripslashes(get_settings('email_template_subject')); ?>" size="82" /></td>245 <td align="left"><input type="text" id="email_template_subject" name="email_template_subject" value="<?php echo htmlspecialchars(stripslashes(get_settings('email_template_subject'))); ?>" size="82" /></td> 246 246 </tr> 247 247 <tr valign="top"> … … 265 265 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template'); ?>" onclick="javascript: email_default_templates('body');" class="button" /> 266 266 </td> 267 <td align="left"><textarea cols="80" rows="15" id="email_template_body" name="email_template_body"><?php echo stripslashes(get_settings('email_template_body')); ?></textarea></td>267 <td align="left"><textarea cols="80" rows="15" id="email_template_body" name="email_template_body"><?php echo htmlspecialchars(stripslashes(get_settings('email_template_body'))); ?></textarea></td> 268 268 </tr> 269 269 <tr valign="top"> … … 287 287 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template'); ?>" onclick="javascript: email_default_templates('bodyalt');" class="button" /> 288 288 </td> 289 <td align="left"><textarea cols="80" rows="15" id="email_template_bodyalt" name="email_template_bodyalt"><?php echo stripslashes(get_settings('email_template_bodyalt')); ?></textarea></td>289 <td align="left"><textarea cols="80" rows="15" id="email_template_bodyalt" name="email_template_bodyalt"><?php echo htmlspecialchars(stripslashes(get_settings('email_template_bodyalt'))); ?></textarea></td> 290 290 </tr> 291 291 </table> … … 306 306 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template'); ?>" onclick="javascript: email_default_templates('sentsuccess');" class="button" /> 307 307 </td> 308 <td align="left"><textarea cols="80" rows="10" id="email_template_sentsuccess" name="email_template_sentsuccess"><?php echo stripslashes(get_settings('email_template_sentsuccess')); ?></textarea></td>308 <td align="left"><textarea cols="80" rows="10" id="email_template_sentsuccess" name="email_template_sentsuccess"><?php echo htmlspecialchars(stripslashes(get_settings('email_template_sentsuccess'))); ?></textarea></td> 309 309 </tr> 310 310 <tr valign="top"> … … 321 321 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template'); ?>" onclick="javascript: email_default_templates('sentfailed');" class="button" /> 322 322 </td> 323 <td align="left"><textarea cols="80" rows="10" id="email_template_sentfailed" name="email_template_sentfailed"><?php echo stripslashes(get_settings('email_template_sentfailed')); ?></textarea></td>323 <td align="left"><textarea cols="80" rows="10" id="email_template_sentfailed" name="email_template_sentfailed"><?php echo htmlspecialchars(stripslashes(get_settings('email_template_sentfailed'))); ?></textarea></td> 324 324 </tr> 325 325 </table> … … 338 338 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template'); ?>" onclick="javascript: email_default_templates('error');" class="button" /> 339 339 </td> 340 <td align="left"><textarea cols="80" rows="10" id="email_template_error" name="email_template_error"><?php echo stripslashes(get_settings('email_template_error')); ?></textarea></td>340 <td align="left"><textarea cols="80" rows="10" id="email_template_error" name="email_template_error"><?php echo htmlspecialchars(stripslashes(get_settings('email_template_error'))); ?></textarea></td> 341 341 </tr> 342 342 </table> wp-email/trunk/email/email.php
r6407 r6556 4 4 Plugin URI: http://www.lesterchan.net/portfolio/programming.php 5 5 Description: Enable You To Send Your Webblog Entry To A Friend. 6 Version: 2.0 76 Version: 2.08 7 7 Author: GaMerZ 8 8 Author URI: http://www.lesterchan.net wp-email/trunk/email/wp-email-popup.php
r6407 r6556 3 3 +----------------------------------------------------------------+ 4 4 | | 5 | WordPress 2.0 Plugin: WP-EMail 2.0 7|5 | WordPress 2.0 Plugin: WP-EMail 2.08 | 6 6 | Copyright (c) 2005 Lester "GaMerZ" Chan | 7 7 | | … … 265 265 // If There Are Errors 266 266 } else { 267 $error = substr($error, 2 0);267 $error = substr($error, 21); 268 268 $template_email_error = stripslashes(get_settings('email_template_error')); 269 269 $template_email_error = str_replace("%EMAIL_ERROR_MSG%", $error, $template_email_error); … … 313 313 <p> 314 314 <strong><label for="imageverify">Image Verification: *</label></strong><br /> 315 <img src="<?php echo get_settings('siteurl'); ?>/wp-content/plugins/email/email-image-verify.php" width=" 60" height="22" alt="Image Verification" /><input type="text" size="5" maxlength="5" id="imageverify" name="imageverify" class="Forms" />315 <img src="<?php echo get_settings('siteurl'); ?>/wp-content/plugins/email/email-image-verify.php" width="55" height="15" alt="Image Verification" /><input type="text" size="5" maxlength="5" id="imageverify" name="imageverify" class="Forms" /> 316 316 </p> 317 317 <?php endif; ?> wp-email/trunk/email/wp-email.php
r6407 r6556 3 3 +----------------------------------------------------------------+ 4 4 | | 5 | WordPress 2.0 Plugin: WP-EMail 2.0 7|5 | WordPress 2.0 Plugin: WP-EMail 2.08 | 6 6 | Copyright (c) 2005 Lester "GaMerZ" Chan | 7 7 | | … … 254 254 255 255 // If There Are Errors 256 } else { 257 $error = substr($error, 2 0);258 $template_email_error = stripslashes(get_settings('email_template_error')); 256 } else { 257 $error = substr($error, 21); 258 $template_email_error = stripslashes(get_settings('email_template_error')); 259 259 $template_email_error = str_replace("%EMAIL_ERROR_MSG%", $error, $template_email_error); 260 260 $template_email_error = str_replace("%EMAIL_BLOG_NAME%", get_bloginfo('name'), $template_email_error); … … 304 304 <p> 305 305 <strong><label for="imageverify">Image Verification: *</label></strong><br /> 306 <img src="<?php echo get_settings('siteurl'); ?>/wp-content/plugins/email/email-image-verify.php" width=" 60" height="22" alt="Image Verification" /><input type="text" size="5" maxlength="5" id="imageverify" name="imageverify" class="Forms" />306 <img src="<?php echo get_settings('siteurl'); ?>/wp-content/plugins/email/email-image-verify.php" width="55" height="15" alt="Image Verification" /><input type="text" size="5" maxlength="5" id="imageverify" name="imageverify" class="Forms" /> 307 307 </p> 308 308 <?php endif; ?> wp-email/trunk/readme.html
r6421 r6556 3 3 <head> 4 4 <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 5 <title>WP-EMail 2.0 7Readme</title>5 <title>WP-EMail 2.08 Readme</title> 6 6 <style type="text/css" media="screen"> 7 7 /* Default Style */ … … 181 181 <div id="Container"> 182 182 <!-- Title --> 183 <div id="Title">WP-EMail 2.0 7 <span style="color: #aaaaaa;">Readme</span></div>183 <div id="Title">WP-EMail 2.08 <span style="color: #aaaaaa;">Readme</span></div> 184 184 185 185 <!-- Tabs --> … … 202 202 <script type="text/javascript"> 203 203 /* <![CDATA[*/ 204 document.write(' <a href="mailto:gamerz84@hotmail.com?Subject=WP-EMail%202.0 7%20Support" title="EMail To gamerz84@hotmail.com">gamerz84@hotmail.com</a>');204 document.write(' <a href="mailto:gamerz84@hotmail.com?Subject=WP-EMail%202.08%20Support" title="EMail To gamerz84@hotmail.com">gamerz84@hotmail.com</a>'); 205 205 /* ]]> */ 206 206 </script> … … 211 211 <p><b>Development:</b><br /><b>»</b> <a href="http://dev.wp-plugins.org/browser/wp-email/" title="http://dev.wp-plugins.org/browser/wp-email/">http://dev.wp-plugins.org/browser/wp-email/</a></p> 212 212 <p><b>Support Forums:</b><br /><b>»</b> <a href="http://forums.lesterchan.net/viewforum.php?f=13" title="http://forums.lesterchan.net/viewforum.php?f=13">http://forums.lesterchan.net/viewforum.php?f=13</a></p> 213 <p><b>Updated:</b><br /><b>»</b> 1 st October 2006</p>213 <p><b>Updated:</b><br /><b>»</b> 11th December 2006</p> 214 214 <div class="SubSubTitle">Changelog</div> 215 215 <ul> 216 <li> 217 <b>Version 2.08 (11-12-2006)</b> 218 <ul> 219 <li>FIXED: Special HTML Characters No Longer Get Converted Into Its Symbolic Form When Displaying In E-Mail -> E-Mail Options</li> 220 <li>FIXED: Extra ; When Displaying Error Message</li> 221 </ul> 222 </li> 216 223 <li> 217 224 <b>Version 2.07 (01-10-2006)</b> … … 361 368 <div id="Upgrade" style="display: none;"> 362 369 <div class="SubTitle">» Upgrade Instructions</div> 363 <div class="SubSubTitle">From v2.0x To v2.0 7</div>370 <div class="SubSubTitle">From v2.0x To v2.08</div> 364 371 <ol> 365 372 <li> … … 383 390 </li> 384 391 </ol> 385 <div class="SubSubTitle">From v1.0x To v2.0 7</div>392 <div class="SubSubTitle">From v1.0x To v2.08</div> 386 393 <ol> 387 394 <li> … … 499 506 </div> 500 507 </div> 501 <p id="Copyright">WP-EMail 2.0 7<br />Copyright © 2006 Lester 'GaMerZ' Chan. All Rights Reserved.</p>508 <p id="Copyright">WP-EMail 2.08<br />Copyright © 2006 Lester 'GaMerZ' Chan. All Rights Reserved.</p> 502 509 </body> 503 510 </html>
