summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthony Ferrara <me@ircmaxell.com>2013-05-10 04:19:13 -0700
committerAnthony Ferrara <me@ircmaxell.com>2013-05-10 04:19:13 -0700
commit6925da603b31bfff9488480c0a9db48a0feeadf1 (patch)
tree093425b7ed7f96d341577a5b6ee163313f1e556d
parent432ce5617c34c6e5d89a99efe5107ff5b1dcac26 (diff)
parent04b9a755749f0cc202d1eb5d51d0d5082b0c6cf2 (diff)
downloadpassword_compat-6925da603b31bfff9488480c0a9db48a0feeadf1.zip
password_compat-6925da603b31bfff9488480c0a9db48a0feeadf1.tar.gz
password_compat-6925da603b31bfff9488480c0a9db48a0feeadf1.tar.bz2
Merge pull request #26 from johncongdon/master
Fix for potential forward compatibility break.
-rw-r--r--lib/password.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/password.php b/lib/password.php
index 4d0e8b7..faa5eaa 100644
--- a/lib/password.php
+++ b/lib/password.php
@@ -7,7 +7,7 @@
* @copyright 2012 The Authors
*/
-if (!defined('PASSWORD_BCRYPT')) {
+if (!defined('PASSWORD_DEFAULT')) {
define('PASSWORD_BCRYPT', 1);
define('PASSWORD_DEFAULT', PASSWORD_BCRYPT);