Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Jun 29, 2015
1 parent f792940 commit 2a17e3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions framework/Icalendar/lib/Horde/Icalendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -1539,9 +1539,9 @@ protected function _exportDuration($value)
if ($value) {
$duration .= $value . 'S';
}
}
// duration without time ("P") is NOT valid, append 0 seconds ("T0S")
elseif ($duration === 'P') {
} elseif ($duration === 'P') {
// Duration without time ("P") is NOT valid, append 0 seconds
// ("T0S").
$duration .= 'T0S';
}

Expand Down

0 comments on commit 2a17e3f

Please sign in to comment.