Don't absint gmt_offset. Props Hirvine. fixes #9162

git-svn-id: https://develop.svn.wordpress.org/trunk@11066 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-04-23 07:03:21 +00:00
parent 9eff22d723
commit 6f00ac0c70

View File

@ -13,7 +13,7 @@ require(dirname(__FILE__) . '/wp-load.php');
/** Get the POP3 class with which to access the mailbox. */ /** Get the POP3 class with which to access the mailbox. */
require_once( ABSPATH . WPINC . '/class-pop3.php' ); require_once( ABSPATH . WPINC . '/class-pop3.php' );
$time_difference = absint(get_option('gmt_offset')) * 3600; $time_difference = get_option('gmt_offset') * 3600;
$phone_delim = '::'; $phone_delim = '::';