mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 04:52:14 +09:00
commit
0036c29f5b
2 changed files with 8 additions and 5 deletions
|
|
@ -3,7 +3,7 @@
|
||||||
/**
|
/**
|
||||||
* RX_VERSION is the version number of the Rhymix CMS.
|
* 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.
|
* RX_MICROTIME is the startup time of the current script, in microseconds since the Unix epoch.
|
||||||
|
|
|
||||||
|
|
@ -167,10 +167,13 @@ class communicationModel extends communication
|
||||||
{
|
{
|
||||||
foreach($member_info as $key => $val)
|
foreach($member_info as $key => $val)
|
||||||
{
|
{
|
||||||
if($key != 'regdate')
|
if($key === 'title') continue;
|
||||||
{
|
if($key === 'content') continue;
|
||||||
$message->{$key} = $val;
|
if($key === 'sender_srl') continue;
|
||||||
}
|
if($key === 'password') continue;
|
||||||
|
if($key === 'regdate') continue;
|
||||||
|
|
||||||
|
$message->{$key} = $val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue