]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - index.php
application: move checkPHPVersion from Utils to ApplicationUtils
[github/shaarli/Shaarli.git] / index.php
index 654f7f8f36fabb83b84f2e0016b67a8d82e8866b..aae477bf7ec36b9f647d2addcc6c26929db994d9 100644 (file)
--- a/index.php
+++ b/index.php
@@ -159,7 +159,7 @@ require_once 'application/Router.php';
 
 // Ensure the PHP version is supported
 try {
-    checkPHPVersion('5.3', PHP_VERSION);
+    ApplicationUtils::checkPHPVersion('5.3', PHP_VERSION);
 } catch(Exception $exc) {
     header('Content-Type: text/plain; charset=utf-8');
     echo $exc->getMessage();