From 6a9ef0fbbc7f435fbdaaf9d5c4afe8629d1fb536 Mon Sep 17 00:00:00 2001 From: Mikael Roos Date: Sat, 25 Jul 2015 23:04:55 +0200 Subject: [PATCH] Correcting defaults for password --- webroot/img_config.php | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/webroot/img_config.php b/webroot/img_config.php index ffb3e66..d071cac 100644 --- a/webroot/img_config.php +++ b/webroot/img_config.php @@ -46,21 +46,21 @@ return array( /** - * Use password to protect from missusage, send &pwd=... or &password=.. - * with the request to match the password or set to false to disable. - * Passwords are only used together with the options for remote download - * and aliasing. - * - * Create a passwords like this, depending on the type used: - * text: 'my_password' - * md5: md5('my_password') - * hash: password_hash('my_password', PASSWORD_DEFAULT) - * - * Default values. - * password_always: false // do not always require password, - * password: false // as in do not use password - * password_type: 'text' // use plain password, not encoded, - */ + * Use password to protect from missusage, send &pwd=... or &password=.. + * with the request to match the password or set to false to disable. + * Passwords are only used together with options for remote download + * and aliasing. + * + * Create a passwords like this, depending on the type used: + * text: 'my_password' + * md5: md5('my_password') + * hash: password_hash('my_password', PASSWORD_DEFAULT) + * + * Default values. + * password_always: false // do not always require password, + * password: false // as in do not use password + * password_type: 'text' // use plain password, not encoded, + */ //'password_always' => false, // always require password, //'password' => false, // "secret-password", //'password_type' => 'text', // supports 'text', 'md5', 'hash',