From 95448a153e6e0dde8b87b9a4c0fde1ed2b096aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Andrieu?= Date: Thu, 30 Jul 2015 13:44:26 +0200 Subject: [PATCH] Fixed typo on setContants function --- bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.php b/bootstrap.php index ffc1448b2..3fde391f8 100755 --- a/bootstrap.php +++ b/bootstrap.php @@ -23,7 +23,7 @@ function systemErrorHandler($errno, $errstr, $errfile, $errline, $errcontext = n class Bootstrap { function boot($light = false) { //define all needed constants - $this->setContants(); + $this->setConstants(); mb_internal_encoding("UTF-8"); @@ -95,7 +95,7 @@ class Bootstrap { throw new Exception(implode("\n
",$errors)); } } - private function setContants() { + private function setConstants() { define('APP_TITLE', 'Movim'); define('APP_NAME', 'movim'); define('APP_VERSION', $this->getVersion());