diff options
author | plegall <plg@piwigo.org> | 2015-12-31 19:59:08 +0100 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2015-12-31 19:59:08 +0100 |
commit | 4aeedb5a2ea455c503721de29a35e8a3c1fa0a9d (patch) | |
tree | 1e5892d3f32f1491d85067cc9def93270649c8c6 /include/constants.php | |
parent | eee57a5d2ece31f9b99485f82a310b80d8fa3935 (diff) |
feature #392, authentication keys, album notification
* On album notification (for a group), sends one distinct email for each user
with a new authentication key.
* When someone clicks the link with auth=<key> in URL, if the user is not
already connected, Piwigo will automatically connect the user.
Diffstat (limited to 'include/constants.php')
-rw-r--r-- | include/constants.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/constants.php b/include/constants.php index ef321a4bc..f9a032d0f 100644 --- a/include/constants.php +++ b/include/constants.php @@ -81,6 +81,8 @@ if (!defined('USER_FEED_TABLE')) define('USER_FEED_TABLE', $prefixeTable.'user_feed'); if (!defined('RATE_TABLE')) define('RATE_TABLE', $prefixeTable.'rate'); +if (!defined('USER_AUTH_KEYS_TABLE')) + define('USER_AUTH_KEYS_TABLE', $prefixeTable.'user_auth_keys'); if (!defined('USER_CACHE_TABLE')) define('USER_CACHE_TABLE', $prefixeTable.'user_cache'); if (!defined('USER_CACHE_CATEGORIES_TABLE')) |