Skip to content

Commit 6f4da2a

Browse files
authored
Merge pull request #196 from willyaranda/OPENTOK-35074
OPENTOK-35074. Fix from from unknown variable
2 parents c8dff04 + 9d14d5d commit 6f4da2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample/SipCall/web/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
// create the options parameter
8282
$options = array(
8383
'secure' => $app->sip['secure'],
84-
'from' => $app->$sip['from'],
84+
'from' => $app->sip['from'],
8585
);
8686
if ($app->sip['username'] !== false) {
8787
$options['auth'] = array('username' => $app->sip['username'], 'password' => $app->sip['password']);

0 commit comments

Comments
 (0)