29 lines
781 B
Plaintext
29 lines
781 B
Plaintext
<?php
|
|
/* Security release? */
|
|
$notes['security'] = true;
|
|
|
|
/* Mailing list release notes. */
|
|
$notes['changes'] = <<<ML
|
|
The Horde Team is pleased to announce the final release of the Passwd Horde
|
|
password changing application version H5 (5.0.7).
|
|
|
|
Passwd provides support for changing passwords via the Horde authentication
|
|
system or various password backends.
|
|
|
|
For upgrading instructions, please see
|
|
http://www.horde.org/apps/nag/docs/UPGRADING
|
|
|
|
For detailed installation and configuration instructions, please see
|
|
http://www.horde.org/apps/nag/docs/INSTALL
|
|
|
|
The major changes compared to Passwd version H5 (5.0.6) are:
|
|
* Fixed open redirects.
|
|
* Officially support PHP 7.
|
|
ML;
|
|
|
|
|
|
$notes['name'] = 'Passwd';
|
|
$notes['list'] = 'sork';
|
|
$notes['branch'] = 'Horde 5';
|
|
return $notes;
|