From 7ae0cc3751effc60c5e3cf9dd6f2138cf9d3349f Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 12 Feb 2013 09:34:10 -0800 Subject: [PATCH] Break long line. Change-Id: I1422eb3eee369c18858f31a66df1e3904e098958 --- includes/UIDGenerator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/UIDGenerator.php b/includes/UIDGenerator.php index 6134db28aa..99642b72ed 100644 --- a/includes/UIDGenerator.php +++ b/includes/UIDGenerator.php @@ -56,7 +56,8 @@ class UIDGenerator { } elseif ( is_executable( '/sbin/ifconfig' ) ) { // Linux/BSD/Solaris/OS X // See http://linux.die.net/man/8/ifconfig $m = array(); - preg_match( '/\s([0-9a-f]{2}(:[0-9a-f]{2}){5})\s/', wfShellExec( '/sbin/ifconfig -a' ), $m ); + preg_match( '/\s([0-9a-f]{2}(:[0-9a-f]{2}){5})\s/', + wfShellExec( '/sbin/ifconfig -a' ), $m ); $nodeId = isset( $m[1] ) ? str_replace( ':', '', $m[1] ) : ''; } wfRestoreWarnings(); -- 2.20.1