Changeset 6487
- Timestamp:
- 12/24/2007 08:13:35 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.3/wp-mail.php
r6280 r6487 13 13 14 14 if (!$pop3->connect(get_option('mailserver_url'), get_option('mailserver_port'))) 15 wp_die( $pop3->ERROR);15 wp_die(wp_specialchars($pop3->ERROR)); 16 16 17 17 $count = $pop3->login(get_option('mailserver_login'), get_option('mailserver_pass')); … … 167 167 168 168 if(!$pop3->delete($i)) { 169 echo '<p>Oops '. $pop3->ERROR.'</p></div>';169 echo '<p>Oops '.wp_specialchars($pop3->ERROR).'</p></div>'; 170 170 $pop3->reset(); 171 171 exit;
Note: See TracChangeset
for help on using the changeset viewer.