From 47aa41a9e69c0eb01933f2de614be11af46f280d Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 23 Apr 2009 07:03:21 +0000 Subject: [PATCH] Don't absint gmt_offset. Props Hirvine. fixes #9162 git-svn-id: http://svn.automattic.com/wordpress/trunk@11066 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-mail.php b/wp-mail.php index 15b4c7df0d..a4f9f6631f 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -13,7 +13,7 @@ require(dirname(__FILE__) . '/wp-load.php'); /** Get the POP3 class with which to access the mailbox. */ require_once( ABSPATH . WPINC . '/class-pop3.php' ); -$time_difference = absint(get_option('gmt_offset')) * 3600; +$time_difference = get_option('gmt_offset') * 3600; $phone_delim = '::';