Merge pull request #299 from strk/lang-filter-ownposts

Do not filter out own messages
pull/300/head
Tobias Diekershoff 2015-09-10 06:46:12 +02:00
commit 5b2c4dfed9
1 changed files with 5 additions and 0 deletions

View File

@ -78,6 +78,11 @@ function langfilter_prepare_body(&$a,&$b) {
if(get_pconfig(local_user(),'langfilter','disable'))
return;
# Never filter own messages
# TODO: find a better way to extract this
$logged_user_profile = $a->config['system']['url'] . '/profile/' . $a->user['nickname'];
if ( $logged_user_profile == $b['item']['author-link'] ) return;
if(local_user()) {
$langs = get_pconfig(local_user(),'langfilter','languages');
}