Changeset 7838
- Timestamp:
- 02/06/07 16:00:23 (1 year ago)
- Files:
-
- wp-email/trunk/email/email.php (modified) (3 diffs)
- wp-email/trunk/readme.html (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-email/trunk/email/email.php
r7754 r7838 4 4 Plugin URI: http://www.lesterchan.net/portfolio/programming.php 5 5 Description: Allows people to recommand/send your WordPress blog's post/page to a friend. 6 Version: 2.1 06 Version: 2.11 7 7 Author: GaMerZ 8 8 Author URI: http://www.lesterchan.net … … 338 338 $current_time = current_time('timestamp'); 339 339 $email_ip = get_email_ipaddress(); 340 $email_host = gethostbyaddr($email_ip);340 $email_host = @gethostbyaddr($email_ip); 341 341 $email_status = __('Success', 'wp-email'); 342 342 $last_emailed = $wpdb->get_var("SELECT email_timestamp FROM $wpdb->email WHERE email_ip = '$email_ip' AND email_host = '$email_host' AND email_status = '$email_status' ORDER BY email_timestamp DESC LIMIT 1"); … … 755 755 $email_timestamp = current_time('timestamp'); 756 756 $email_ip = get_email_ipaddress(); 757 $email_host = gethostbyaddr($email_ip);757 $email_host = @gethostbyaddr($email_ip); 758 758 foreach($friends as $friend) { 759 759 $email_friendname = addslashes($friend['name']); wp-email/trunk/readme.html
r7717 r7838 3 3 <head> 4 4 <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 5 <title>WP-EMail 2.1 0Readme</title>5 <title>WP-EMail 2.11 Readme</title> 6 6 <style type="text/css" media="screen"> 7 7 /* Default Style */ … … 204 204 <div id="Container"> 205 205 <!-- Title --> 206 <div id="Title">WP-EMail 2.1 0 <span style="color: #aaaaaa;">Readme</span></div>206 <div id="Title">WP-EMail 2.11 <span style="color: #aaaaaa;">Readme</span></div> 207 207 208 208 <!-- Tabs --> … … 230 230 <script type="text/javascript"> 231 231 /* <![CDATA[*/ 232 document.write(' <a href="mailto:gamerz84@hotmail.com?Subject=WP-EMail%202.1 0%20Support" title="EMail To gamerz84@hotmail.com">gamerz84@hotmail.com</a>');232 document.write(' <a href="mailto:gamerz84@hotmail.com?Subject=WP-EMail%202.11%20Support" title="EMail To gamerz84@hotmail.com">gamerz84@hotmail.com</a>'); 233 233 /* ]]> */ 234 234 </script> … … 244 244 <p> 245 245 <b>Download:</b><br /> 246 <b>»</b> <a href="http://www.lesterchan.net/others/downloads.php?id=13" title="http://www.lesterchan.net/others/downloads.php?id=13">WP-EMail 2.1 0For WordPress 2.1.x</a><br />246 <b>»</b> <a href="http://www.lesterchan.net/others/downloads.php?id=13" title="http://www.lesterchan.net/others/downloads.php?id=13">WP-EMail 2.11 For WordPress 2.1.x</a><br /> 247 247 <b>»</b> <a href="http://www.lesterchan.net/others/downloads/wp-email207.zip" title="http://www.lesterchan.net/others/downloads/wp-email207.zip">WP-EMail 2.07 For WordPress 2.0.x</a><br /> 248 248 <b>»</b> <a href="http://www.lesterchan.net/others/downloads/wp-email200b.zip" title="http://www.lesterchan.net/others/downloads/wp-email200b.zip">WP-EMail 2.00b For WordPress 1.5.2</a> … … 266 266 <p> 267 267 <b>Updated:</b><br /> 268 <b>»</b> 1st Februrary 2007268 <b>»</b> 1st May 2007 269 269 </p> 270 270 <p> … … 288 288 <div class="SubTitle">» Changelog</div> 289 289 <ul> 290 <li> 291 <b>Version 2.11 (01-05-2007)</b> 292 <ul> 293 <li>FIXED: Suppress gethostbyaddr() Error</li> 294 </ul> 295 </li> 290 296 <li> 291 297 <b>Version 2.10 (01-02-2007)</b> … … 451 457 <div id="Upgrade" style="display: none;"> 452 458 <div class="SubTitle">» Upgrade Instructions</div> 453 <div class="SubSubTitle">From v2.0x To v2.1 0</div>459 <div class="SubSubTitle">From v2.0x To v2.11</div> 454 460 <ol> 455 461 <li> … … 554 560 <div class="SubSubTitle">Note</div> 555 561 <ul> 556 <li>If WP-EMail 2.1 0does not work for you (404 error even after re-generating of permalink), please drop me an email with page.php of your theme attached to it. The problem is due to your theme is using an outdated method of getting/display posts/pages.</li>562 <li>If WP-EMail 2.11 does not work for you (404 error even after re-generating of permalink), please drop me an email with page.php of your theme attached to it. The problem is due to your theme is using an outdated method of getting/display posts/pages.</li> 557 563 </ul> 558 564 <ul> … … 582 588 </div> 583 589 </div> 584 <p id="Copyright">WP-EMail 2.1 0<br />Copyright © 2007 Lester 'GaMerZ' Chan. All Rights Reserved.</p>590 <p id="Copyright">WP-EMail 2.11<br />Copyright © 2007 Lester 'GaMerZ' Chan. All Rights Reserved.</p> 585 591 </body> 586 592 </html>
