parent
ddd745e190
commit
cc9a48315f
1 changed files with 2 additions and 1 deletions
|
@ -150,7 +150,8 @@ class Event extends BaseEntity
|
||||||
$event->setEnd($this->enddate);
|
$event->setEnd($this->enddate);
|
||||||
$event->setSummary($this->summary);
|
$event->setSummary($this->summary);
|
||||||
$event->setUrl($this->url);
|
$event->setUrl($this->url);
|
||||||
$event->setUid($this->id);
|
$uid = sprintf("https://%s/termine/%s",$_SERVER['HTTP_HOST'],$this->slug);
|
||||||
|
$event->setUid($uid);
|
||||||
if (count($this->tags) > 0) {
|
if (count($this->tags) > 0) {
|
||||||
$categories = [];
|
$categories = [];
|
||||||
foreach($this->tags as $tag) {
|
foreach($this->tags as $tag) {
|
||||||
|
|
Reference in a new issue