diff --git a/packages/vtiger/optional/SMSNotifier.zip b/packages/vtiger/optional/SMSNotifier.zip index f898e4f82fa52e31e237e0dfcf322d710f76ccb7..8b22be752a9e82e36f7ba347f73c58fec33f3ddf 100644 Binary files a/packages/vtiger/optional/SMSNotifier.zip and b/packages/vtiger/optional/SMSNotifier.zip differ diff --git a/pkg/vtiger/modules/SMSNotifier/modules/SMSNotifier/workflow/VTSMSTask.php b/pkg/vtiger/modules/SMSNotifier/modules/SMSNotifier/workflow/VTSMSTask.php index a55622f6017e4ac9383263e095a5b4df340d639d..59d508c6119f5ed89c01ccb80c04a2e2124aeefe 100644 --- a/pkg/vtiger/modules/SMSNotifier/modules/SMSNotifier/workflow/VTSMSTask.php +++ b/pkg/vtiger/modules/SMSNotifier/modules/SMSNotifier/workflow/VTSMSTask.php @@ -59,6 +59,10 @@ class VTSMSTask extends VTTask { foreach($recepients as $tonumber) { if(!empty($tonumber)) $tonumbers[] = $tonumber; } + + //As content could be sent with HTML tags. + $content = strip_tags(br2nl($content)); + $this->smsNotifierId = SMSNotifier::sendsms($content, $tonumbers, $current_user->id, $relatedIdsArray); $util->revertUser(); } @@ -89,4 +93,4 @@ class VTSMSTask extends VTTask { return $result; } } -?> \ No newline at end of file +?>