Skip to content

Commit dd0228a

Browse files
author
Michael Babker
committed
Prepare 3.2.1 release
1 parent fb13cfc commit dd0228a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<copyright>(C) 2005 - 2013 Open Source Matters. All rights reserved</copyright>
88
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
99
<version>3.2.1</version>
10-
<creationDate>November 2013</creationDate>
10+
<creationDate>December 2013</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

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ final class JVersion
3737
public $CODENAME = 'Ember';
3838

3939
/** @var string Release date. */
40-
public $RELDATE = '6-November-2013';
40+
public $RELDATE = '18-December-2013';
4141

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

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

0 commit comments

Comments
 (0)