Add warning

This commit is contained in:
Laurent Destailleur 2011-04-13 18:43:31 +00:00
parent 7b73576731
commit 434d990ca1

View File

@ -174,11 +174,19 @@ function limitChars(textarea, limit, infodiv)
if ($conf->global->MAIN_SMS_SENDMODE == 'ovh') if ($conf->global->MAIN_SMS_SENDMODE == 'ovh')
{ {
dol_include_once('/ovh/class/ovhsms.class.php'); dol_include_once('/ovh/class/ovhsms.class.php');
$sms = new OvhSms($db); try
$resultsender = $sms->SmsSenderList($conf->global->OVHSMS_ACCOUNT); {
$sms = new OvhSms($db);
$resultsender = $sms->SmsSenderList($conf->global->OVHSMS_ACCOUNT);
}
catch(Exception $e)
{
dol_print_error('','Error to get list of senders: '.$e->getMessage());
}
} }
else else
{ {
dol_syslog("Warning: The SMS sending method has not been defined into MAIN_SMS_SENDMODE");
$resultsender[0]->number=$this->fromsms; $resultsender[0]->number=$this->fromsms;
} }
if (sizeof($resultsender) > 0) if (sizeof($resultsender) > 0)