diff options
Diffstat (limited to 'smppclient.class.php')
-rw-r--r-- | smppclient.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smppclient.class.php b/smppclient.class.php index 5221c61..41b6f74 100644 --- a/smppclient.class.php +++ b/smppclient.class.php @@ -300,7 +300,7 @@ class SmppClient // Figure out if we need to do CSMS, since it will affect our PDU if ($msg_length > $singleSmsOctetLimit) { $doCsms = true; - if (!self::$csms_method != SmppClient::CSMS_PAYLOAD) { + if (self::$csms_method != SmppClient::CSMS_PAYLOAD) { $parts = $this->splitMessageString($message, $csmsSplit, $dataCoding); $short_message = reset($parts); $csmsReference = $this->getCsmsReference(); |