From: Roland Häder Date: Wed, 4 Mar 2009 05:31:36 +0000 (+0000) Subject: Fixed typo in function name X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=2e0f1bfd10fc3d9fe9b43d29cc3e32622b262c63 Fixed typo in function name --- diff --git a/inc/databases.php b/inc/databases.php index 1f7f7d767d..a849015fc6 100644 --- a/inc/databases.php +++ b/inc/databases.php @@ -98,7 +98,7 @@ define('SERVER_URL', "http://www.mxchange.org"); // Current SVN revision //define('CURR_SVN_REVISION', getActualVersion(0)); -define('CURR_SVN_REVISION', "811"); +define('CURR_SVN_REVISION', "812"); define('CURR_SVN_DATE' , getActualVersion(1)); define('CURR_SVN_VERSION' , getActualVersion(2)); diff --git a/inc/functions.php b/inc/functions.php index d10e1f844d..bfead5a33e 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -3406,7 +3406,7 @@ function enableResetMode () { } // Checks wether the reset mode is active -function isResetEnabled () { +function isResetModeEnabled () { // Now simply check it return ((isset($GLOBALS['reset_enabled'])) && ($GLOBALS['reset_enabled'] === true)); }