From: garvinhicking Date: Mon, 10 Oct 2005 12:55:23 +0000 (+0000) Subject: Sigh. 0.8.6 because of missing password check for EDITOR or CHIEF users? X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=a57e0c8b9faa0b252d7d29b5dc994213cfe486a0;p=s9y.git Sigh. 0.8.6 because of missing password check for EDITOR or CHIEF users? --- diff --git a/docs/NEWS b/docs/NEWS index 3098aa3..061a20b 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -1,5 +1,11 @@ # $Id$ +Version 0.8.6 () +------------------------------------------------------------------------ + * Fix password change setting only being visible for Admin users, + so now editors and chiefs can change their password again. + (garvinhicking) + Version 0.8.5 (September 29th, 2005) ------------------------------------------------------------------------ diff --git a/include/tpl/config_personal.inc.php b/include/tpl/config_personal.inc.php index b9315d0..28c1810 100644 --- a/include/tpl/config_personal.inc.php +++ b/include/tpl/config_personal.inc.php @@ -27,7 +27,7 @@ 'description' => USERCONF_CHECK_PASSWORD_DESC, 'type' => 'protected', 'default' => '', - 'permission' => 'personalConfiguration'), + 'userlevel' => USERLEVEL_EDITOR), array('var' => 'realname', 'title' => USERCONF_REALNAME, diff --git a/serendipity_config.inc.php b/serendipity_config.inc.php index 782c680..c064641 100644 --- a/serendipity_config.inc.php +++ b/serendipity_config.inc.php @@ -21,7 +21,7 @@ if (IS_installed === true && !defined('IN_serendipity')) { include_once(S9Y_INCLUDE_PATH . 'include/compat.inc.php'); // The version string -$serendipity['version'] = '0.8.5'; +$serendipity['version'] = '0.8.6-dev'; // Name of folder for the default theme $serendipity['defaultTemplate'] = 'default';