Skip to content

Commit

Permalink
Revert "One more attempt at debug output for Travis."
Browse files Browse the repository at this point in the history
This reverts commit 6f78525.
  • Loading branch information
mrubinsk committed Jan 21, 2015
1 parent b634840 commit 83252a0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions framework/Mapi/lib/Horde/Mapi/Timezone.php
Expand Up @@ -179,15 +179,11 @@ protected static function _getTransitions(DateTimeZone $timezone, Horde_Date $da
{

$std = $dst = array();
var_dump($date);
var_dump(mktime(0, 0, 0, 12, 1, $date->year - 1));
var_dump(mktime(24, 0, 0, 12, 31, $date->year));
var_dump($timezone->getName());
$transitions = $timezone->getTransitions(
mktime(0, 0, 0, 12, 1, $date->year - 1),
mktime(24, 0, 0, 12, 31, $date->year)
);
var_dump($transitions);

foreach ($transitions as $i => $transition) {
try {
$d = new Horde_Date($transition['time']);
Expand Down

0 comments on commit 83252a0

Please sign in to comment.