Skip to content

Commit ba710f2

Browse files
author
Michael Babker
committed
Prepare 2.5.25 release
1 parent 33ce47e commit ba710f2

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

administrator/includes/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/*
2020
* Installation check, and check on removal of the install directory.
2121
*/
22-
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) /*|| file_exists(JPATH_INSTALLATION.'/index.php')*/) {
22+
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) || file_exists(JPATH_INSTALLATION.'/index.php')) {
2323
header('Location: ../installation/index.php');
2424
exit();
2525
}

administrator/manifests/files/joomla.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<authorUrl>www.joomla.org</authorUrl>
77
<copyright>(C) 2005 - 2014 Open Source Matters. All rights reserved</copyright>
88
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
9-
<version>2.5.25-dev</version>
10-
<creationDate>July 2014</creationDate>
9+
<version>2.5.25</version>
10+
<creationDate>September 2014</creationDate>
1111
<description>FILES_JOOMLA_XML_DESCRIPTION</description>
1212

1313
<scriptfile>administrator/components/com_admin/script.php</scriptfile>

includes/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// Installation check, and check on removal of the install directory.
2121
//
2222

23-
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) /*|| file_exists(JPATH_INSTALLATION.'/index.php')*/) {
23+
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) || file_exists(JPATH_INSTALLATION.'/index.php')) {
2424

2525
if (file_exists(JPATH_INSTALLATION.'/index.php')) {
2626
header('Location: '.substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], 'index.php')).'installation/index.php');

libraries/cms/version/version.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ final class JVersion
2323
public $RELEASE = '2.5';
2424

2525
/** @var string Maintenance version. */
26-
public $DEV_LEVEL = '25-dev';
26+
public $DEV_LEVEL = '25';
2727

2828
/** @var string Development STATUS. */
29-
public $DEV_STATUS = 'Development';
29+
public $DEV_STATUS = 'Stable';
3030

3131
/** @var string Build number. */
3232
public $BUILD = '';
@@ -35,10 +35,10 @@ final class JVersion
3535
public $CODENAME = 'Ember';
3636

3737
/** @var string Release date. */
38-
public $RELDATE = '25-July-2014';
38+
public $RELDATE = '23-September-2014';
3939

4040
/** @var string Release time. */
41-
public $RELTIME = '13:00';
41+
public $RELTIME = '14:00';
4242

4343
/** @var string Release timezone. */
4444
public $RELTZ = 'GMT';

plugins/authentication/ldap/ldap.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ function onUserAuthenticate($credentials, $options, &$response)
3636

3737
// For JLog
3838
$response->type = 'LDAP';
39+
40+
// Strip null bytes from the password
41+
$credentials['password'] = str_replace(chr(0), '', $credentials['password']);
42+
3943
// LDAP does not like Blank passwords (tries to Anon Bind which is bad)
4044
if (empty($credentials['password']))
4145
{

0 commit comments

Comments
 (0)