Skip to content

Commit 7d10561

Browse files
author
Michael Babker
committed
Prepare 3.3.4 release
1 parent aa895cd commit 7d10561

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

administrator/components/com_media/models/manager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function getFolderList($base = null)
9090
// so both string and integer are supported.
9191
if ($asset == 0)
9292
{
93-
$asset = $input->get('asset', 0, 'string');
93+
$asset = $input->get('asset', 0, 'cmd');
9494
}
9595

9696
$author = $input->get('author', 0, 'integer');

administrator/includes/framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// Installation check, and check on removal of the install directory.
1515
if (!file_exists(JPATH_CONFIGURATION . '/configuration.php')
16-
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) /*|| file_exists(JPATH_INSTALLATION . '/index.php')*/)
16+
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) || file_exists(JPATH_INSTALLATION . '/index.php'))
1717
{
1818
if (file_exists(JPATH_INSTALLATION . '/index.php'))
1919
{

administrator/manifests/files/joomla.xml

+2-2
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>3.3.4-dev</version>
10-
<creationDate>July 2014</creationDate>
9+
<version>3.3.4</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

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// Installation check, and check on removal of the install directory.
1515
if (!file_exists(JPATH_CONFIGURATION . '/configuration.php')
16-
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) /*|| file_exists(JPATH_INSTALLATION . '/index.php')*/)
16+
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) || file_exists(JPATH_INSTALLATION . '/index.php'))
1717
{
1818
if (file_exists(JPATH_INSTALLATION . '/index.php'))
1919
{

libraries/cms/version/version.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ final class JVersion
2525
public $RELEASE = '3.3';
2626

2727
/** @var string Maintenance version. */
28-
public $DEV_LEVEL = '4-dev';
28+
public $DEV_LEVEL = '4';
2929

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

3333
/** @var string Build number. */
3434
public $BUILD = '';
@@ -37,10 +37,10 @@ final class JVersion
3737
public $CODENAME = 'Ember';
3838

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

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

4545
/** @var string Release timezone. */
4646
public $RELTZ = 'GMT';

plugins/authentication/ldap/ldap.php

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ public function onUserAuthenticate($credentials, $options, &$response)
3838
// For JLog
3939
$response->type = 'LDAP';
4040

41+
// Strip null bytes from the password
42+
$credentials['password'] = str_replace(chr(0), '', $credentials['password']);
43+
4144
// LDAP does not like Blank passwords (tries to Anon Bind which is bad)
4245
if (empty($credentials['password']))
4346
{

0 commit comments

Comments
 (0)