After event socket class was added it created a bug in FAX email and forward. It was unable to find the new EventSocket class adding the include resolves the problem.
This commit is contained in:
parent
8f93d4d548
commit
b27bcdd820
|
|
@ -22,6 +22,9 @@
|
|||
-- Contributor(s):
|
||||
-- Mark J. Crane
|
||||
|
||||
--set the debug options
|
||||
debug["sql"] = false;
|
||||
|
||||
--create the api object
|
||||
api = freeswitch.API();
|
||||
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ if (defined('STDIN')) {
|
|||
//includes
|
||||
if (!defined('STDIN')) { include "root.php"; }
|
||||
require_once "resources/require.php";
|
||||
include "resources/classes/EventSocket.php";
|
||||
include "resources/phpmailer/class.phpmailer.php";
|
||||
include "resources/phpmailer/class.smtp.php"; // optional, gets called from within class.phpmailer.php if not already loaded
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue