From: Sandro Santilli Date: Wed, 9 Sep 2015 17:41:38 +0000 (+0200) Subject: Do not filter out own messages X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=931c39f44bcdc9675b582e793457fe13643da870;hp=2d6c2989f7dbb53cd6db0b0e114b83de0378451f;p=friendica-addons.git Do not filter out own messages --- diff --git a/langfilter/langfilter.php b/langfilter/langfilter.php index e7526299..bbdc47fe 100644 --- a/langfilter/langfilter.php +++ b/langfilter/langfilter.php @@ -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'); }