Skip to content

Commit

Permalink
Merge pull request #350 from dmjohnsson23/issue-302
Browse files Browse the repository at this point in the history
Remove `abs()` calls from category ID.
  • Loading branch information
craigk5n committed Mar 15, 2023
2 parents fe25447 + c15b4de commit 7c46132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/functions.php
Expand Up @@ -3602,7 +3602,7 @@ function html_for_event_day_at_a_glance ( $event, $date ) {
$can_access = CAN_DOALL;
$end_timestr = $popup_timestr = '';
$getCalTypeName = $event->getCalTypeName();
$getCat = abs( $event->getCategory() );
$getCat = $event->getCategory();
$getClone = $event->getClone();
$getDesc = $event->getDescription();
$getLogin = $event->getLogin();
Expand Down Expand Up @@ -3758,7 +3758,7 @@ function html_for_event_week_at_a_glance ( $event, $date,
$can_access = CAN_DOALL;
$catAlt = $href = $timestr = '';
$getCalTypeName = $event->getCalTypeName();
$getCat = abs( $event->getCategory() );
$getCat = $event->getCategory();
$getClone = $event->getClone();
$getDatetime = $event->getDatetime();
$getLoginStr = $event->getLogin();
Expand Down

0 comments on commit 7c46132

Please sign in to comment.