Changeset 1475
- Timestamp:
- 09/18/09 11:31:44 (14 years ago)
- Location:
- plugins/newsletter/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/newsletter/trunk/changelog.txt
r1466 r1475 1 Newsletter 3.5.13 - 2009-09-1 31 Newsletter 3.5.13 - 2009-09-18 2 2 =========================================================== 3 3 * Correction du Ticket #231 : Fatal error avec les sous catégories 4 * Correction du Ticket #234 : utilise l'adresse IP du serveur plutôt que celle du client dans l'envoi des mails 4 5 5 6 Newsletter 3.5.12 - 2009-09-12 -
plugins/newsletter/trunk/inc/class.newsletter.mailing.php
r1050 r1475 59 59 $this->x_blog_name = mail::B64Header($this->blog->name); 60 60 $this->x_blog_url = mail::B64Header($this->blog->url); 61 $this->x_originating_ip = http::realIP();61 $this->x_originating_ip = (isset($_SERVER['SERVER_ADDR']) ? $_SERVER['SERVER_ADDR'] : null); 62 62 63 63 $this->success = array();
Note: See TracChangeset
for help on using the changeset viewer.