Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #5680 - ics file contains SugarCRM references #6393

Open
wants to merge 2 commits into
base: hotfix-7.10.x
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fixed#5680 - ics file contains SugarCRM references
  • Loading branch information
ChangezKhan authored and Dillon-Brown committed Oct 8, 2019
commit e8f68319c6cc315a65a10453f51b2911c618626a
4 changes: 2 additions & 2 deletions modules/iCals/iCal.php
Original file line number Diff line number Diff line change
Expand Up @@ -523,8 +523,8 @@ public function getVcalIcal(&$user_focus, $num_months)
$ical_array[] = array("BEGIN", "VCALENDAR");
$ical_array[] = array("VERSION", "2.0");
$ical_array[] = array("METHOD", "PUBLISH");
$ical_array[] = array("X-WR-CALNAME", "$cal_name (SugarCRM)");
$ical_array[] = array("PRODID", "-//SugarCRM//SugarCRM Calendar//EN");
$ical_array[] = array("X-WR-CALNAME", "$cal_name (SuiteCRM)");
$ical_array[] = array("PRODID", "-//SuiteCRM//SuiteCRM Calendar//EN");
$ical_array = array_merge($ical_array, vCal::create_ical_array_from_string($this->getTimezoneString()));
$ical_array[] = array("CALSCALE", "GREGORIAN");

Expand Down