This commit is contained in:
friendica 2013-06-16 23:07:04 -07:00
parent 82539ba2bc
commit 7ae340dd40

View File

@ -75,9 +75,9 @@ function can_comment_on_post($observer_xchan,$item) {
default: default:
break; break;
} }
if(strstr('network:',$item['comment_policy']) && strstr('red',$item['comment_policy'])) if(strstr($item['comment_policy'],'network:') && strstr($item['comment_policy'],'red'))
return true; return true;
if(strstr('site:', $item['comment_policy']) && strstr(get_app()->get_hostname(),$item['comment_policy'])) if(strstr($item['comment_policy'],'site:') && strstr($item['comment_policy'],get_app()->get_hostname()))
return true; return true;
return false; return false;