mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-29 07:12:15 +09:00
Reduce risk of accidental disclosure of member_srl and other personal info
This commit is contained in:
parent
fc870d5672
commit
a107e86dc6
6 changed files with 16 additions and 16 deletions
|
|
@ -496,7 +496,7 @@ class commentItem extends Object
|
|||
*/
|
||||
function getProfileImage()
|
||||
{
|
||||
if(!$this->isExists() || !$this->get('member_srl'))
|
||||
if(!$this->isExists() || $this->get('member_srl') <= 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
@ -517,7 +517,7 @@ class commentItem extends Object
|
|||
function getSignature()
|
||||
{
|
||||
// pass if the posting not exists.
|
||||
if(!$this->isExists() || !$this->get('member_srl'))
|
||||
if(!$this->isExists() || $this->get('member_srl') <= 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue