From c5f35e5743fedf668777cc1294dce82d139a3abc Mon Sep 17 00:00:00 2001 From: Mikael Roos Date: Sat, 25 Jul 2015 23:20:21 +0200 Subject: [PATCH] preparing to tag v0.7.1 --- REVISION.md | 2 +- webroot/img.php | 2 +- webroot/imgd.php | 6 ++++-- webroot/imgp.php | 6 ++++-- webroot/imgs.php | 6 ++++-- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/REVISION.md b/REVISION.md index 51d3c46..5fa9fa3 100644 --- a/REVISION.md +++ b/REVISION.md @@ -5,7 +5,7 @@ Revision history [![Build Status](https://scrutinizer-ci.com/g/mosbth/cimage/badges/build.png?b=master)](https://scrutinizer-ci.com/g/mosbth/cimage/build-status/master) -v0.7.0.x (latest) +v0.7.1 (2015-07-25) ------------------------------------- * Support for password hashes using `text`, `md5` and `hash`, fix #77. diff --git a/webroot/img.php b/webroot/img.php index 9dbc00a..350c0d8 100644 --- a/webroot/img.php +++ b/webroot/img.php @@ -8,7 +8,7 @@ * */ -$version = "v0.7.0.x (latest)"; +$version = "v0.7.1 (2015-07-25)"; diff --git a/webroot/imgd.php b/webroot/imgd.php index 2666c6c..328265f 100644 --- a/webroot/imgd.php +++ b/webroot/imgd.php @@ -3101,7 +3101,7 @@ class CWhitelist * */ -$version = "v0.7.0.x (latest)"; +$version = "v0.7.1 (2015-07-25)"; @@ -3326,7 +3326,7 @@ $pwdType = getConfig('password_type', 'text'); $pwd = get(array('password', 'pwd'), null); // Check if passwords match, if configured to use passwords -$passwordMatch = false; +$passwordMatch = null; if ($pwd) { switch($pwdType) { case 'md5': @@ -3338,6 +3338,8 @@ if ($pwd) { case 'text': $passwordMatch = ($pwdConfig === $pwd); break; + default: + $passwordMatch = false; } } diff --git a/webroot/imgp.php b/webroot/imgp.php index ea92abb..dab87c4 100644 --- a/webroot/imgp.php +++ b/webroot/imgp.php @@ -3101,7 +3101,7 @@ class CWhitelist * */ -$version = "v0.7.0.x (latest)"; +$version = "v0.7.1 (2015-07-25)"; @@ -3326,7 +3326,7 @@ $pwdType = getConfig('password_type', 'text'); $pwd = get(array('password', 'pwd'), null); // Check if passwords match, if configured to use passwords -$passwordMatch = false; +$passwordMatch = null; if ($pwd) { switch($pwdType) { case 'md5': @@ -3338,6 +3338,8 @@ if ($pwd) { case 'text': $passwordMatch = ($pwdConfig === $pwd); break; + default: + $passwordMatch = false; } } diff --git a/webroot/imgs.php b/webroot/imgs.php index 2666c6c..328265f 100644 --- a/webroot/imgs.php +++ b/webroot/imgs.php @@ -3101,7 +3101,7 @@ class CWhitelist * */ -$version = "v0.7.0.x (latest)"; +$version = "v0.7.1 (2015-07-25)"; @@ -3326,7 +3326,7 @@ $pwdType = getConfig('password_type', 'text'); $pwd = get(array('password', 'pwd'), null); // Check if passwords match, if configured to use passwords -$passwordMatch = false; +$passwordMatch = null; if ($pwd) { switch($pwdType) { case 'md5': @@ -3338,6 +3338,8 @@ if ($pwd) { case 'text': $passwordMatch = ($pwdConfig === $pwd); break; + default: + $passwordMatch = false; } }