From: Aaron Schulz Date: Tue, 12 Feb 2013 17:34:10 +0000 (-0800) Subject: Break long line. X-Git-Tag: 1.31.0-rc.0~20715 X-Git-Url: http://git.cyclocoop.org/%24dirpuce/puce%24spip_lang_rtl.gif?a=commitdiff_plain;h=7ae0cc3751effc60c5e3cf9dd6f2138cf9d3349f;p=lhc%2Fweb%2Fwiklou.git Break long line. Change-Id: I1422eb3eee369c18858f31a66df1e3904e098958 --- 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();