Skip to content

Commit ba4d167

Browse files
authored
Merge pull request #26 from riadvice/url-encoding
Remove unnecessary url encoding
2 parents e373c5b + 3659618 commit ba4d167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parameters/CreateMeetingParameters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ public function getPresentationsAsXML()
447447

448448
foreach ($this->presentations as $nameOrUrl => $content) {
449449
if ($this->presentations[$nameOrUrl] === true) {
450-
$module->addChild('document')->addAttribute('url', urlencode($nameOrUrl));
450+
$module->addChild('document')->addAttribute('url', $nameOrUrl);
451451
} else {
452452
$document = $module->addChild('document');
453453
$document->addAttribute('name', $nameOrUrl);

0 commit comments

Comments
 (0)