]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/System.php
Fix missing mentions
[friendica.git] / src / Core / System.php
index 4eb6be0809d9771d9907160e8a6f471c9d1bbef0..b41f520d7792c614414cda5701ab8e8ab3ee22ed 100644 (file)
@@ -167,7 +167,7 @@ class System extends BaseObject
         * @param bool|string  $prefix   A given prefix (default is empty)
         * @return string a generated UUID
         */
-       public static function UUID($prefix = '')
+       public static function createUUID($prefix = '')
        {
                $guid = System::createGUID(32, $prefix);
                return substr($guid, 0, 8). '-' . substr($guid, 8, 4) . '-' . substr($guid, 12, 4) . '-' . substr($guid, 16, 4) . '-' . substr($guid, 20, 12);