From: Roland Haeder Date: Fri, 24 Mar 2017 20:15:14 +0000 (+0100) Subject: Opps, became lazy here, thanks to @Hypolite finding it. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c0be733d6d5318f333514430a5b1ad11821d2f3d;p=friendica.git Opps, became lazy here, thanks to @Hypolite finding it. Signed-off-by: Roland Haeder --- diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index e9ccf4195d..caa27b8690 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -143,7 +143,9 @@ function dfrn_notify_post(App $a) { $rino = get_config('system','rino_encrypt'); $rino = intval($rino); // use RINO1 if mcrypt isn't installed and RINO2 was selected - if ($rino == 2 and !function_exists('mcrypt_create_iv')) $rino=1; + if ($rino == 2 and !function_exists('mcrypt_create_iv')) { + $rino = 1; + } logger("Local rino version: ". $rino, LOGGER_DEBUG);