fixed coding standards
authorArthur Almeida <arthur.almeidapereira@gmail.com>
Thu, 11 May 2017 21:03:24 +0000 (18:03 -0300)
committerArthur Almeida <arthur.almeidapereira@gmail.com>
Thu, 11 May 2017 21:03:24 +0000 (18:03 -0300)
CRM/Utils/String.php

index 66e69552dded67887e8b12c71969f1425a264c2b..fc28c0f000b735a6c8fd2a6f04341cc663fa3ffa 100644 (file)
@@ -83,14 +83,12 @@ class CRM_Utils_String {
     // we only use the ascii character set since mysql does not create table names / field names otherwise
     // CRM-11744
     $name = preg_replace('/[^a-zA-Z0-9]+/', $char, trim($name));
-      
 
     //If there are no ascii characters present.
     if ($name == $char) {
       $name = self::createRandom($len, self::ALPHANUMERIC);
     }
 
-
     if ($len) {
       // lets keep variable names short
       return substr($name, 0, $len);