From cded40da01634b07bf4c4af9a3ac9a4a707ce097 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Thu, 28 Jul 2011 00:23:52 +0000 Subject: [PATCH] Fix syntax error from r93343 --- includes/profiler/ProfilerSimpleUDP.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/profiler/ProfilerSimpleUDP.php b/includes/profiler/ProfilerSimpleUDP.php index 77fdf34341..b13634eb09 100644 --- a/includes/profiler/ProfilerSimpleUDP.php +++ b/includes/profiler/ProfilerSimpleUDP.php @@ -19,8 +19,8 @@ class ProfilerSimpleUDP extends ProfilerSimple { # Less than minimum, ignore return; } - - if ( !function_exists( 'socket_create' ) ) + + if ( !function_exists( 'socket_create' ) ) { # Sockets are not enabled return; } -- 2.20.1