Reduce risk of accidental disclosure of member_srl and other personal info

This commit is contained in:
Kijin Sung 2016-04-28 13:03:23 +09:00
parent fc870d5672
commit a107e86dc6
6 changed files with 16 additions and 16 deletions

View file

@ -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;
}