diff --git a/plugins/Diagnostics/Diagnostic/PhpFunctionsCheck.php b/plugins/Diagnostics/Diagnostic/PhpFunctionsCheck.php
index 26e30326be07a429e95ebc4df7368b5be4d7f6e1..736fc738771b227fdb9860a0779608159728efdd 100644
--- a/plugins/Diagnostics/Diagnostic/PhpFunctionsCheck.php
+++ b/plugins/Diagnostics/Diagnostic/PhpFunctionsCheck.php
@@ -59,6 +59,7 @@ class PhpFunctionsCheck implements Diagnostic
             'debug_backtrace',
             'create_function',
             'eval',
+            'hash',
             'gzcompress',
             'gzuncompress',
             'pack',
@@ -101,6 +102,7 @@ class PhpFunctionsCheck implements Diagnostic
             'debug_backtrace' => 'Installation_SystemCheckDebugBacktraceHelp',
             'create_function' => 'Installation_SystemCheckCreateFunctionHelp',
             'eval'            => 'Installation_SystemCheckEvalHelp',
+            'hash'            => 'Installation_SystemCheckHashHelp',
             'gzcompress'      => 'Installation_SystemCheckGzcompressHelp',
             'gzuncompress'    => 'Installation_SystemCheckGzuncompressHelp',
             'pack'            => 'Installation_SystemCheckPackHelp',
diff --git a/plugins/Installation/lang/en.json b/plugins/Installation/lang/en.json
index 6e134146286e92d81f6ecac304d841ab04aa8a3f..131b40a2a106a04199fad7e31ee6bf86f7021dca 100644
--- a/plugins/Installation/lang/en.json
+++ b/plugins/Installation/lang/en.json
@@ -84,6 +84,7 @@
         "SystemCheckGlobHelp": "This built-in function has been disabled on your host. Piwik will attempt to emulate this function but may encounter further security restrictions. Functionality may be impacted.",
         "SystemCheckGzcompressHelp": "You need to enable the zlib extension and gzcompress function.",
         "SystemCheckGzuncompressHelp": "You need to enable the zlib extension and gzuncompress function.",
+        "SystemCheckHashHelp": "You need to configure and rebuild PHP with hash() support enabled by excluding the option --disable-hash.",
         "SystemCheckIconvHelp": "You need to configure and rebuild PHP with \"iconv\" support enabled, --with-iconv.",
         "SystemCheckJsonHelp": "The php5-json extension is required for Piwik to read and write JSON data.",
         "SystemCheckMailHelp": "Feedback and Lost Password messages will not be sent without mail().",
@@ -144,4 +145,4 @@
         "CannotConnectToDb": "Cannot connect to the database",
         "CannotConnectToDbResolvingExplanation": "This may be a temporary issue, try %1$srefreshing the page%2$s. If the problem persists please contact your Piwik administrator."
     }
-}
\ No newline at end of file
+}
diff --git a/tests/UI/expected-screenshots/Installation_system_check.png b/tests/UI/expected-screenshots/Installation_system_check.png
index 0d0af0024b9e526c6edc42afa22735a159927776..2b068301b132f4377581230171d7c62c2e18c5e4 100644
Binary files a/tests/UI/expected-screenshots/Installation_system_check.png and b/tests/UI/expected-screenshots/Installation_system_check.png differ