aboutsummaryrefslogtreecommitdiff
path: root/classes/constants.php
diff options
context:
space:
mode:
authorCamil Staps2016-07-26 00:16:17 +0200
committerCamil Staps2016-07-26 00:17:07 +0200
commit93b405ab9f69538546165c75a301c0c57a5359cf (patch)
tree7fab746b7fadcd26d012255b7bfad65a5b14ef61 /classes/constants.php
parentUpdate makefile for d9936a9 (diff)
User authentication mechanism
Diffstat (limited to 'classes/constants.php')
-rw-r--r--classes/constants.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/classes/constants.php b/classes/constants.php
index d16bde4..77f47b0 100644
--- a/classes/constants.php
+++ b/classes/constants.php
@@ -69,6 +69,9 @@ class constants {
/** @const fa_valuta see http://fontawesome.io/icons/#currency; the fa- postfix for valuta */
const fa_valuta = 'eur';
+ /** @const password_cost for the password_hash function. Run install?password_cost to benchmark your system */
+ const password_cost = 10;
+
/** @const version Version of BusinessAdmin. Don't change this yourself! */
- const version = '0.3';
+ const version = '0.4';
}