diff --git a/common/constants.php b/common/constants.php index 214c5bfa3..906e0ecbf 100644 --- a/common/constants.php +++ b/common/constants.php @@ -3,7 +3,7 @@ /** * RX_VERSION is the version number of the Rhymix CMS. */ -define('RX_VERSION', '1.8.18'); +define('RX_VERSION', '1.8.19'); /** * RX_MICROTIME is the startup time of the current script, in microseconds since the Unix epoch. diff --git a/modules/communication/communication.model.php b/modules/communication/communication.model.php index b4bb6974c..b8326bf97 100644 --- a/modules/communication/communication.model.php +++ b/modules/communication/communication.model.php @@ -167,10 +167,13 @@ class communicationModel extends communication { foreach($member_info as $key => $val) { - if($key != 'regdate') - { - $message->{$key} = $val; - } + if($key === 'title') continue; + if($key === 'content') continue; + if($key === 'sender_srl') continue; + if($key === 'password') continue; + if($key === 'regdate') continue; + + $message->{$key} = $val; } }