]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/filter/miner/class_MinerPhpRequirementsFilter.php
Updated to latest 'core' + convertToClassName() and convertDashesToUnderscores()...
[hub.git] / application / hub / main / filter / miner / class_MinerPhpRequirementsFilter.php
index d75c2a05a510fdcb50f29d8e41b8fac4202c0ee5..dc490d2ee2b9d075d171a056c934cae4dd8bdd1c 100644 (file)
@@ -66,14 +66,14 @@ class MinerPhpRequirementsFilter extends BaseMinerFilter implements Filterable {
                        $checksFailed++;
                } // END -if
 
-               // If scrypt() is not found (ext-scrypt) then the "HubCoins reward" is not working
+               // If scrypt() is not found (ext-scrypt) then the "Hubcoins reward" is not working
                if ((extension_loaded('scrypt')) && (is_callable('scrypt'))) {
                        // Mark it as working
-                       self::createDebugInstance(__CLASS__)->debugOutput('FILTER[' . __METHOD__ . ':' . __LINE__ . '] ext-scrypt and a callable scrypt() function found. "HubCoin reward" feature enabled.');
+                       self::createDebugInstance(__CLASS__)->debugOutput('FILTER[' . __METHOD__ . ':' . __LINE__ . '] ext-scrypt and a callable scrypt() function found. "Hubcoin reward" feature enabled.');
                        $this->getConfigInstance()->setConfigEntry('extension_scrypt_loaded', TRUE);
                } else {
                        // Not working (not all have ext-scrypt installed
-                       self::createDebugInstance(__CLASS__)->debugOutput('FILTER[' . __METHOD__ . ':' . __LINE__ . '] ext-scrypt not found or scrypt() function not found. "HubCoin reward" feature disabled.');
+                       self::createDebugInstance(__CLASS__)->debugOutput('FILTER[' . __METHOD__ . ':' . __LINE__ . '] ext-scrypt not found or scrypt() function not found. "Hubcoin reward" feature disabled.');
                }
 
                // Are all tests passed?