Skip to content
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.

Commit

Permalink
Fix concatenation of applet errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Gipetto committed Aug 19, 2015
1 parent 6e5d81e commit 440b0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenVBX/controllers/twiml.php
Expand Up @@ -256,7 +256,7 @@ private function applet($flow_id, $inst_id, $type = 'voice')
}
catch(Exception $ex)
{
$this->response->say('Error: ' + $ex->getMessage(), $this->say_params);
$this->response->say('Error: ' . $ex->getMessage(), $this->say_params);
$this->response->respond();
}
}
Expand Down

0 comments on commit 440b0e2

Please sign in to comment.